#pragma implementation "tooltip.h"
#endif
+#include "wx/setup.h"
+
+#if wxUSE_TOOLTIPS
+
#include "wx/window.h"
#include "wx/tooltip.h"
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 );
}
gtk_tooltips_set_delay( ss_tooltips, msecs );
}
+#endif