Only enable tooltips on WIN32

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-01-03 13:40:43 +00:00
parent c8f9a56b7c
commit c3a6a2bc10

View File

@@ -662,7 +662,11 @@
// 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