Making GtkCellLayout "no cell area yet" warning a g_critical instead.

This commit is contained in:
Tristan Van Berkom 2011-01-13 23:02:34 +09:00
parent 66593ef569
commit 04494c5df0

View File

@ -94,7 +94,7 @@
#include "gtkintl.h"
#define warn_no_cell_area(func) \
g_warning ("%s: Called but no GtkCellArea is available yet", func)
g_critical ("%s: Called but no GtkCellArea is available yet", func)
typedef GtkCellLayoutIface GtkCellLayoutInterface;
G_DEFINE_INTERFACE (GtkCellLayout, gtk_cell_layout, G_TYPE_OBJECT);