]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/window.cpp
Remove unnecessary size members from GtkPizzaChild.
[wxWidgets.git] / src / gtk / window.cpp
index de71af2416030ed5a1696935d192bfd86af2c668..206fe6ffd85a35046ffd489be17c4d2ddbf1527a 100644 (file)
@@ -3763,8 +3763,15 @@ void wxWindowGTK::DoSetToolTip( wxToolTip *tip )
 
 void wxWindowGTK::ApplyToolTip( GtkTooltips *tips, const wxChar *tip )
 {
-    wxString tmp( tip );
-    gtk_tooltips_set_tip( tips, GetConnectWidget(), wxGTK_CONV(tmp), (gchar*) NULL );
+    if (tip)
+    {
+        wxString tmp( tip );
+        gtk_tooltips_set_tip( tips, GetConnectWidget(), wxGTK_CONV(tmp), (gchar*) NULL );
+    }
+    else
+    {
+        gtk_tooltips_set_tip( tips, GetConnectWidget(), NULL, NULL);
+    }
 }
 #endif // wxUSE_TOOLTIPS