forked from AuroraMiddleware/gtk
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:
parent
94218b8cfe
commit
bf09470d79
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
||||
Fri Jul 5 20:18:23 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmenushell.[ch] gtk/gtkmenubar.c gtk/gtkmenuitem.c
|
||||
|
@ -137,7 +137,7 @@ struct _ColorSelectionPrivate
|
||||
GtkWidget *dropper_grab_widget;
|
||||
|
||||
/* Connection to settings */
|
||||
guint settings_connection;
|
||||
gulong settings_connection;
|
||||
};
|
||||
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -182,7 +182,7 @@ struct _GtkTextBTree {
|
||||
GtkTextBuffer *buffer;
|
||||
BTreeView *views;
|
||||
GSList *tag_infos;
|
||||
guint tag_changed_handler;
|
||||
gulong tag_changed_handler;
|
||||
|
||||
/* Incremented when a segment with a byte size > 0
|
||||
* is added to or removed from the tree (i.e. the
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user