]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/tooltip.cpp
Commented out call that breaks metal style setting before Create
[wxWidgets.git] / src / gtk / tooltip.cpp
index caf2a283bebeccdc53d0e58c8e26cc0e4c0754ba..e0d3bd03fa6db92227dd15a1e3875a710f09376b 100644 (file)
@@ -68,11 +68,18 @@ void wxToolTip::Enable( bool flag )
         gtk_tooltips_disable( ss_tooltips );
 }
 
+G_BEGIN_DECLS
+void gtk_tooltips_set_delay (GtkTooltips *tooltips,
+                             guint delay);
+G_END_DECLS
+
 void wxToolTip::SetDelay( long msecs )
 {
     if (!ss_tooltips)
         return;
 
+    // FIXME: This is a deprecated function and might not even have an effect.
+    // Try to not use it, after which remove the prototype above.
     gtk_tooltips_set_delay( ss_tooltips, (int)msecs );
 }