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
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user