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/gtktextbtree.c | |
parent | 94218b8cfe573a7996a747b6ece9c5f46f204954 (diff) | |
download | gtk+-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/gtktextbtree.c')
-rw-r--r-- | gtk/gtktextbtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextbtree.c b/gtk/gtktextbtree.c index 0ebe88b16f..7f270e19a8 100644 --- a/gtk/gtktextbtree.c +++ b/gtk/gtktextbtree.c @@ -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 |