Re: which gtk-win32 version to use?

2010-09-28 Thread Manu
Thanks for the quick answer. Actually, I got a ms visual c++ runtime error quite often saying: this app has requested the runtime to terminate it in an unusual way. Unfortunately, I don't know more about what was unusual... Manu TM On 09/28/2010 03:19 AM, Allin Cottrell wrote: On Tue, 28 Sep

Re: which gtk-win32 version to use?

2010-09-28 Thread Manu
Thanks. I have just installed gdb for mingw. Manu TM On 9/28/2010 1:41 PM, Tor Lillqvist wrote: this app has requested the runtime to terminate it in an unusual way. That is just the message you get when abort() is called. Not really any more or less informative than the single-word message

g_value_type_transformable String to Enum fails

2010-09-28 Thread Mike Massonnet
Hi, By compiling the following code snippet, at execution it prints a critical message. Is this a bug or just normal? (process:1545): GLib-GObject-CRITICAL **: g_value_type_transformable: assertion `G_TYPE_IS_VALUE (dest_type)' failed // cc `pkg-config --cflags --libs gobject-2.0` #include

GtkBuilder issue?

2010-09-28 Thread Lance Dillon
I'm trying to add gtkbuilder support to pike (pike.roxen.com). In loading a glade3 file, it says Invalid Object 'blah', unless I create an instance of the object first. I narrowed it down to (in gtkbuilder.c): static GType gtk_builder_real_get_type_from_name (GtkBuilder *builder,

Re: g_value_type_transformable String to Enum fails

2010-09-28 Thread Mike Massonnet
I took the snippet a lil' further. If I use a custom implemented enum type and use its get_type function instead of GEnum's it works fine. But since I wished to use the transform function with a generic enum type I had logically prefer to use GEnumType and not a custom one. Nothing of this is