]> git.saurik.com Git - wxWidgets.git/commitdiff
Only enable tooltips on WIN32
authorJulian Smart <julian@anthemion.co.uk>
Fri, 3 Jan 2003 13:40:43 +0000 (13:40 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 3 Jan 2003 13:40:43 +0000 (13:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/univ/setup0.h

index 7f3502fbeaa897b772a42441e17cdea14a74e14b..0f3bf313d93bf3aa64fb312147f0c09a0e5cfc19 100644 (file)
 // Default is 1.
 //
 // Recommended setting: 1
-#define wxUSE_TOOLTIPS 1
+#ifdef __WIN32__
+    #define wxUSE_TOOLTIPS 1
+#else
+    #define wxUSE_TOOLTIPS 0
+#endif
 
 // wxValidator class and related methods
 #define wxUSE_VALIDATORS 1