]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/tooltip.cpp
Layout things in wxMessageBox
[wxWidgets.git] / src / gtk / tooltip.cpp
index cd0a8670e3fc07d2698a82846eef6d5a8e695bf8..789278b7921c0e942c77f7a26aef40ca35e45281 100644 (file)
@@ -11,7 +11,9 @@
     #pragma implementation "tooltip.h"
 #endif
 
-#ifdef wxUSE_TOOLTIPS
+#include "wx/setup.h"
+
+#if wxUSE_TOOLTIPS
 
 #include "wx/window.h"
 #include "wx/tooltip.h"
@@ -67,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 );
 }