diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-07-10 18:30:23 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-07-10 18:30:23 +0000 |
commit | bf09470d79ca7fd0e5e32a6d1fcd4b88a7c4a79b (patch) | |
tree | 8958c5cf17abaec177d12ae926795f16ca84e578 /modules | |
parent | 94218b8cfe573a7996a747b6ece9c5f46f204954 (diff) | |
download | gdk-pixbuf-bf09470d79ca7fd0e5e32a6d1fcd4b88a7c4a79b.tar.gz |
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)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/input/gtkimcontextxim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/input/gtkimcontextxim.c b/modules/input/gtkimcontextxim.c index febc44aa1..d46501af6 100644 --- a/modules/input/gtkimcontextxim.c +++ b/modules/input/gtkimcontextxim.c @@ -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); |