comparison gtk/dw.c @ 1391:614fb124d2e2

Similar variable name change required on GTK2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 26 Nov 2011 21:05:49 +0000
parents 0512fbb08abf
children ccd383e11ff8
comparison
equal deleted inserted replaced
1390:58c084177e3e 1391:614fb124d2e2
4935 GtkTooltips *tooltips; 4935 GtkTooltips *tooltips;
4936 4936
4937 DW_MUTEX_LOCK; 4937 DW_MUTEX_LOCK;
4938 tooltips = gtk_tooltips_new(); 4938 tooltips = gtk_tooltips_new();
4939 gtk_tooltips_set_tip(tooltips, handle, bubbletext ? bubbletext : "", NULL); 4939 gtk_tooltips_set_tip(tooltips, handle, bubbletext ? bubbletext : "", NULL);
4940 gtk_object_set_data(GTK_OBJECT(tmp), "_dw_tooltip", (gpointer)tooltips); 4940 gtk_object_set_data(GTK_OBJECT(handle), "_dw_tooltip", (gpointer)tooltips);
4941 DW_MUTEX_UNLOCK; 4941 DW_MUTEX_UNLOCK;
4942 } 4942 }
4943 4943
4944 /* 4944 /*
4945 * Gets the text used for a given window. 4945 * Gets the text used for a given window.