]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/tooltip.cpp
Another Unicode fix.
[wxWidgets.git] / src / gtk / tooltip.cpp
index dde56c65eeb758a637cffda48f8e8c7ca426b271..789278b7921c0e942c77f7a26aef40ca35e45281 100644 (file)
     #pragma implementation "tooltip.h"
 #endif
 
+#include "wx/setup.h"
+
+#if wxUSE_TOOLTIPS
+
 #include "wx/window.h"
 #include "wx/tooltip.h"
 
@@ -65,7 +69,7 @@ void wxToolTip::Apply( wxWindow *win )
     m_window = win;
 
     if (m_text.IsEmpty())
-        m_window->ApplyToolTip( ss_tooltips, (char*) NULL );
+        m_window->ApplyToolTip( ss_tooltips, (wxChar*) NULL );
     else
         m_window->ApplyToolTip( ss_tooltips, m_text );
 }
@@ -86,4 +90,5 @@ void wxToolTip::SetDelay( long msecs )
 
     gtk_tooltips_set_delay( ss_tooltips, msecs );
 }
+#endif