X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7ce0e4a5f07ba2281188e4c95a8f5ebeafec42b..acd32ffcdb319f162633c20e0202db3f8542998a:/src/gtk/tooltip.cpp diff --git a/src/gtk/tooltip.cpp b/src/gtk/tooltip.cpp index c46b6f9190..801ae68eed 100644 --- a/src/gtk/tooltip.cpp +++ b/src/gtk/tooltip.cpp @@ -24,7 +24,7 @@ // global data //----------------------------------------------------------------------------- -static GtkTooltips *gs_tooltips = (GtkTooltips*) NULL; +static GtkTooltips *gs_tooltips = NULL; //----------------------------------------------------------------------------- // wxToolTip @@ -35,16 +35,16 @@ IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject) wxToolTip::wxToolTip( const wxString &tip ) { m_text = tip; - m_window = (wxWindow*) NULL; + m_window = NULL; } void wxToolTip::SetTip( const wxString &tip ) { m_text = tip; - Apply( m_window ); + GTKApply( m_window ); } -void wxToolTip::Apply( wxWindow *win ) +void wxToolTip::GTKApply( wxWindow *win ) { if (!win) return; @@ -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->GTKApplyToolTip( gs_tooltips, NULL ); else - m_window->ApplyToolTip( gs_tooltips, m_text ); + m_window->GTKApplyToolTip( gs_tooltips, wxGTK_CONV_SYS(m_text) ); } /* static */ -void wxToolTip::Apply(GtkWidget *w, const wxCharBuffer& tip) +void wxToolTip::GTKApply(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