X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7ce0e4a5f07ba2281188e4c95a8f5ebeafec42b..81b0235f13a7e3cca27d1883d1098bfe285a9351:/src/gtk/tooltip.cpp?ds=inline diff --git a/src/gtk/tooltip.cpp b/src/gtk/tooltip.cpp index c46b6f9190..08f55c48f4 100644 --- a/src/gtk/tooltip.cpp +++ b/src/gtk/tooltip.cpp @@ -55,13 +55,13 @@ void wxToolTip::Apply( wxWindow *win ) m_window = win; if (m_text.empty()) - m_window->ApplyToolTip( gs_tooltips, (wxChar*) NULL ); + m_window->ApplyToolTip( gs_tooltips, NULL ); else - m_window->ApplyToolTip( gs_tooltips, m_text ); + m_window->ApplyToolTip( gs_tooltips, wxGTK_CONV_SYS(m_text) ); } /* static */ -void wxToolTip::Apply(GtkWidget *w, const wxCharBuffer& tip) +void wxToolTip::Apply(GtkWidget *w, const gchar *tip) { if ( !gs_tooltips ) gs_tooltips = gtk_tooltips_new(); @@ -95,4 +95,12 @@ void wxToolTip::SetDelay( long msecs ) gtk_tooltips_set_delay( gs_tooltips, (int)msecs ); } +void wxToolTip::SetAutoPop( long WXUNUSED(msecs) ) +{ +} + +void wxToolTip::SetReshow( long WXUNUSED(msecs) ) +{ +} + #endif // wxUSE_TOOLTIPS