diff options
author | Bastien Nocera <hadess@hadess.net> | 2013-10-22 15:43:43 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2013-10-23 13:31:18 +0200 |
commit | 438cd857c49242244dda2923ac447f36464b9e72 (patch) | |
tree | 9b583fc07a430a739e80d62c73edede9ad019602 /gtk/gtkspinbutton.c | |
parent | dcc0fd222e78372ce49a8722420ccc7e9e022cdd (diff) | |
download | gtk+-438cd857c49242244dda2923ac447f36464b9e72.tar.gz |
all: Add names to timeouts
Add names to every timeout we setup, so it's easier to track their
usage, and debug possible misbehaviour.
https://bugzilla.gnome.org/show_bug.cgi?id=710651
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 537a1565f9..694d59bcaf 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -1464,6 +1464,7 @@ start_spinning (GtkSpinButton *spin, priv->timer = gdk_threads_add_timeout (TIMEOUT_INITIAL, (GSourceFunc) gtk_spin_button_timer, (gpointer) spin); + g_source_set_name_by_id (priv->timer, "[gtk+] gtk_spin_button_timer"); } gtk_spin_button_real_spin (spin, click_child == priv->up_panel ? step : -step); @@ -1589,6 +1590,7 @@ gtk_spin_button_timer (GtkSpinButton *spin_button) priv->timer = gdk_threads_add_timeout (TIMEOUT_REPEAT, (GSourceFunc) gtk_spin_button_timer, (gpointer) spin_button); + g_source_set_name_by_id (priv->timer, "[gtk+] gtk_spin_button_timer"); } else { |