Re: [Vala] [ANNOUNCE] Vala 0.19.0 - Compiler for the GObject type system

2013-02-21 Thread raum
Hello You could try this package I've just compiled. It's running under MingW. http://linbox.free.fr/cross-compile/binaries/vala-0.19.0-bin.tar.xz And check this directory for libs and more : http://linbox.free.fr/cross-compile/binaries Regards Raum > On Wed, 20 Feb 2013 22:48:41 +0100 > Jürg

[Vala] Problem with GLib.KeyFile

2013-02-21 Thread Robin Krahl
Hi there, I try to use GLib.KeyFile to parse a configuration file yet I am experiencing problems even if I just return a reference to a KeyFile object (see code and output below). What am I doing wrong? Thanks in advance for your help! Regards, Robin == Minimal code example class Test {

Re: [Vala] Problem with GLib.KeyFile

2013-02-21 Thread JM
Do this: public unowned GLib.KeyFile get_key_file() { return key_file; } That should work Am Donnerstag, den 21.02.2013, 13:36 +0100 schrieb Robin Krahl: > Hi there, > > I try to use GLib.KeyFile to parse a configuration file yet I am experiencing > problems even if I just ret