all: Name more idles and timeouts
Following up from 438cd857c4,
name more timeouts and idles.
The original grep was missing checking for gdk_threads_add_*()
functions (at least for some of the files).
https://bugzilla.gnome.org/show_bug.cgi?id=726870
This commit is contained in:
committed by
Matthias Clasen
parent
454c485ebe
commit
f71f7215ab
@ -14708,7 +14708,10 @@ gtk_widget_queue_tooltip_query (GtkWidget *widget)
|
||||
tooltip_query_displays = g_slist_prepend (tooltip_query_displays, g_object_ref (display));
|
||||
|
||||
if (tooltip_query_id == 0)
|
||||
tooltip_query_id = gdk_threads_add_idle (tooltip_query_idle, NULL);
|
||||
{
|
||||
tooltip_query_id = gdk_threads_add_idle (tooltip_query_idle, NULL);
|
||||
g_source_set_name_by_id (tooltip_query_id, "[gtk+] tooltip_query_idle");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user