diff options
author | Alberto Garcia <agarcia@igalia.com> | 2010-10-08 02:37:23 +0200 |
---|---|---|
committer | Christian Dywan <christian@twotoasts.de> | 2010-10-22 18:58:47 +0200 |
commit | d6a73fd5b0c8e30b22ed77f5ffa47bed2b506040 (patch) | |
tree | ec5ada040b78fed901983a1389101ad0cec85df6 /gtk/gtkclipboard.c | |
parent | 56d5b454431f00ba043c289bc75f4579a6a25696 (diff) | |
download | gtk+-d6a73fd5b0c8e30b22ed77f5ffa47bed2b506040.tar.gz |
Assign all g_signal_connect() and friends to gulong variables
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=87821
Diffstat (limited to 'gtk/gtkclipboard.c')
-rw-r--r-- | gtk/gtkclipboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkclipboard.c b/gtk/gtkclipboard.c index e286d43b3a..7273bd3944 100644 --- a/gtk/gtkclipboard.c +++ b/gtk/gtkclipboard.c @@ -71,7 +71,7 @@ struct _GtkClipboard GdkAtom *cached_targets; gint n_cached_targets; - guint notify_signal_id; + gulong notify_signal_id; gboolean storing_selection; GMainLoop *store_loop; guint store_timeout; |