]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dlimpexp.h
fix getting tooltip colors for GTK 2.11
[wxWidgets.git] / include / wx / dlimpexp.h
index e2baeb9f04f249b58f01ab70d2abf588714e22b5..3df4f4e603b851f0ec17604a255eb413ccc928ff 100644 (file)
 #ifndef _WX_DLIMPEXP_H_
 #define _WX_DLIMPEXP_H_
 
-#if defined(__WINDOWS__)
+#if defined(HAVE_VISIBILITY)
+#    define WXEXPORT __attribute__ ((visibility("default")))
+#    define WXIMPORT __attribute__ ((visibility("default")))
+#elif defined(__WINDOWS__)
     /*
        __declspec works in BC++ 5 and later, Watcom C++ 11.0 and later as well
        as VC++ and gcc
@@ -51,9 +54,6 @@
 #elif defined(__CYGWIN__)
 #    define WXEXPORT __declspec(dllexport)
 #    define WXIMPORT __declspec(dllimport)
-#elif defined(HAVE_VISIBILITY)
-#    define WXEXPORT __attribute__ ((visibility("default")))
-#    define WXIMPORT
 #endif
 
 /* for other platforms/compilers we don't anything */