Re: Assert messages.

2003-03-25 Thread Andrej Kacian
On Sun, 23 Mar 2003 14:40:44 -0800 Carl B. Constantine [EMAIL PROTECTED] wrote: (dispatcher:1692): Gtk-CRITICAL **: file gtkwidget.c: line 4814 (gtk_widget_set_size_request): assertion `height = -1' failed I came across this one some time ago, it is caused by glade-2 (i am using 1.1.3),

Assert messages.

2003-03-23 Thread Carl B. Constantine
I'm getting a couple of assert messages in my app kind of all-of-a-sudden as of late. I'm curious what they really mean and how can I track them down. Here are the asserts I'm getting: (dispatcher:1692): Gtk-CRITICAL **: file gtkwidget.c: line 4814 (gtk_widget_set_size_request): assertion

Re: Assert messages.

2003-03-23 Thread Carl B. Constantine
* Sven Neumann ([EMAIL PROTECTED]) wrote: Hi, Carl B. Constantine [EMAIL PROTECTED] writes: I'm getting a couple of assert messages in my app kind of all-of-a-sudden as of late. I'm curious what they really mean and how can I track them down. you can force warnings to become fatal

Re: Assert messages.

2003-03-23 Thread Sven Neumann
Hi, Carl B. Constantine [EMAIL PROTECTED] writes: you can force warnings to become fatal by passing --g-fatal-warnings to your GTK+ application. The application will then crash on the first warning message allowing you to examine the cause of the warning in a debugger. That may quit