From: Robin Dunn Date: Wed, 18 Oct 2006 03:54:48 +0000 (+0000) Subject: If an empty string is passed, remove the tooltip instead of setting it X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/17b5a3eccbadb40f649e84904433e506ece39e1c If an empty string is passed, remove the tooltip instead of setting it to "". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42091 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index de71af2416..206fe6ffd8 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -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