]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/deprecated/setup.h
unicode for mac fixes
[wxWidgets.git] / contrib / include / wx / deprecated / setup.h
index 0bee55cc614402ed245eb4bd7bd17c65e23eca76..e103e1433216aac1eb3bd9edc5b22164e038c86f 100644 (file)
 #define wxUSE_TIMEDATE 0
 
 // wxProperty[Value/Form/List] classes, used by Dialog Editor
+#ifdef wxUSE_PROPSHEET
+#undef wxUSE_PROPSHEET
+#endif
 #define wxUSE_PROPSHEET    1
 
 // wxTreeLayout class
+#ifdef wxUSE_TREELAYOUT
+#undef wxUSE_TREELAYOUT
+#endif
 #define wxUSE_TREELAYOUT     1
 
 // use wxExpr (a.k.a. PrologIO)
+#ifdef wxUSE_PROLOGIO
+#undef wxUSE_PROLOGIO
+#endif
 #define wxUSE_PROLOGIO          1
 
 // Use .wxr resource mechanism (requires PrologIO library)
 #endif
 #define wxUSE_WX_RESOURCES      1
 
+
+
+
+
+#ifdef WXMAKINGDLL_DEPRECATED
+    #define WXDLLIMPEXP_DEPRECATED WXEXPORT
+    #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXEXPORT type
+#elif defined(WXUSINGDLL)
+    #define WXDLLIMPEXP_DEPRECATED WXIMPORT
+    #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXIMPORT type
+#else // not making nor using DLL
+    #define WXDLLIMPEXP_DEPRECATED
+    #define WXDLLIMPEXP_DATA_DEPRECATED(type) type
+#endif
+
 #endif
     // _WX_DEPRECATED_SETUP_H_