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 /gtk/gtkdialog.c | |
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 'gtk/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index 689b3952a..d2d5af953 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -912,10 +912,10 @@ gtk_dialog_run (GtkDialog *dialog) { RunInfo ri = { NULL, GTK_RESPONSE_NONE, NULL }; gboolean was_modal; - guint response_handler; - guint unmap_handler; - guint destroy_handler; - guint delete_handler; + gulong response_handler; + gulong unmap_handler; + gulong destroy_handler; + gulong delete_handler; g_return_val_if_fail (GTK_IS_DIALOG (dialog), -1); |