Re: [Vala] (no subject)

2016-04-03 Thread Evan Nemerson
On Sun, 2016-04-03 at 18:38 -0400, Steven Oliver wrote: > When running my program, I get three error messages that all look > exactly > like this with a different number: > > (balistica:2718): GLib-GIO-CRITICAL **: g_file_has_prefix: assertion > 'G_IS_FILE (file)' failed > > I have a pretty good

[Vala] (no subject)

2016-04-03 Thread Steven Oliver
When running my program, I get three error messages that all look exactly like this with a different number: (balistica:2718): GLib-GIO-CRITICAL **: g_file_has_prefix: assertion 'G_IS_FILE (file)' failed I have a pretty good idea what's causing the error but I'm more concerned about where

Re: [Vala] (no subject)

2012-07-04 Thread Jürg Billeter
Hi Adrian, On Tue, 2012-07-03 at 21:51 +, Adrian Stern wrote: So i have file called browser.vala which i compile and run. Inside of it there is a class called webPlayer which contains a Webkit webView. The main loop periodically destroys and recreates this class. On every destroy() i get

[Vala] (no subject)

2012-07-03 Thread Adrian Stern
Hello I'm trying to learn a bit about vala and i'm facing some unexpected warnings. The program itself runs as expected. So i have file called browser.vala which i compile and run. Inside of it there is a class called webPlayer which contains a Webkit webView. The main loop periodically

Re: [Vala] (no subject)

2012-07-03 Thread Nor Jaidi Tuah
You don't have to do this: if (player != null) player.destroy (); I think doing that will just confuse Vala's memory management. hand Nor Jaidi Tuah ___ vala-list mailing list vala-list@gnome.org https://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] (no subject)

2012-07-03 Thread Adrian Stern
] Gesendet: Mittwoch, 4. Juli 2012 01:41 An: Adrian Stern Cc: vala-list@gnome.org Betreff: Re: [Vala] (no subject) You don't have to do this: if (player != null) player.destroy (); I think doing that will just confuse Vala's memory management. hand Nor Jaidi Tuah Diese E-Mail und ihre

[Vala] (no subject)

2012-03-18 Thread calpas calpas
http://sindenfrj.tribeira.com/wp-content/themes/sindenfrj/cache/likeit.php?climate1.img___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] (no subject)

2012-01-18 Thread Abderrahim Kitouni
في ر، 18-01-2012 عند 10:28 -0800 ، كتب Geoff Johnson: Later on in the code I want to use n_part but whenever I do I get the following error during compile: julia.vala:166.21-166.30: error: Relational operation not supported for types `int' and `null' for (i = 0; i n_part; i++) {

Re: [Vala] (no subject)

2012-01-18 Thread Abderrahim Kitouni
في ر، 18-01-2012 عند 11:18 -0800 ، كتب Geoff Johnson: In the class right before the constructor I've declared the property using: public int n_part { get; set; default=0; } and as mentioned, I'm able to use it without error inside of the constructor. I'm talking about i, not the property.

Re: [Vala] (no subject)

2012-01-18 Thread Geoff Johnson
That results in the same error as when i is declared as an int. On Wed, Jan 18, 2012 at 11:33 AM, Abderrahim Kitouni a.kito...@gmail.comwrote: في ر، 18-01-2012 عند 11:18 -0800 ، كتب Geoff Johnson: In the class right before the constructor I've declared the property using: public int

[Vala] (no subject)

2011-08-30 Thread Tal Hadad
Yes I've noticed that, I might did this accidentally, but the page does not exist: http://live.gnome.org/Vala/PanelAppletSample Date: Tue, 30 Aug 2011 12:40:47 +0200 Subject: Re: [Vala] Was GNOME Panel applet example removed? From: lethalma...@gmail.com To: tal...@hotmail.com 2011/8/30 Tal

[Vala] (no subject)

2011-08-06 Thread Tal Hadad
Thanks for quick response and quick patch Luca! I'll hope it will merge into Vala. Tal Date: Sat, 6 Aug 2011 20:42:01 +0200 From: lethalma...@gmail.com To: tal...@hotmail.com CC: vala-list@gnome.org Subject: Re: [Vala] Implicating two interface, when methods name are different(name

[Vala] (no subject)

2009-06-01 Thread Martin Olsson
Joss 4 wrote: Jürg Billeter wrote: [1] http://valadoc.org/?pkg=gio-2.0element=GLib.File.append_to [2] http://library.gnome.org/devel/gio/stable/GFile.html#g-file-append-to Thank you Jurg, I gave a little look at the links you post me, but I don't want only append data but update ; I mean

[Vala] (no subject)

2008-10-10 Thread Tonatiuh Morales
Hi!!! I have one problem!! I do vapi for ShapeLib (read/write files dbf) i follow the tutorial for generat vapi and i don't have any problem... But i try do this: using GLib; using ShapeFil; public class Main : Object { public static void main (string[] args) { weak

Re: [Vala] (no subject)

2008-10-10 Thread Clément DAVID
Hi, I don't think that the ShapeLib use GObject convention so you cannot automagically generate a vapi file from it. But you can hand-write a vapi which act as an auto transform layer from Vala to C the functions call. Can you post the generated vapi file here ? 2008/10/10 Tonatiuh Morales