Fix some cases where signal connection IDs where being assigned to guint

Wed Jul 10 14:27:14 2002  Owen Taylor  <otaylor@redhat.com>

        * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c
        gtk/gtkdialog.c gtk/gtktextbtree.c: Fix some cases
        where signal connection IDs where being assigned to
        guint rather than gulong. (part of #87281, Shivram U)
This commit is contained in:
Owen Taylor
2002-07-10 18:30:23 +00:00
committed by Owen Taylor
parent 94218b8cfe
commit bf09470d79
10 changed files with 50 additions and 8 deletions

View File

@@ -44,8 +44,8 @@ struct _StatusWindow
GtkWidget *toplevel;
/* Signal connection ids; we connect to the toplevel */
guint destroy_handler_id;
guint configure_handler_id;
gulong destroy_handler_id;
gulong configure_handler_id;
};
static void gtk_im_context_xim_class_init (GtkIMContextXIMClass *class);