]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/defs.h
Added dummy OnIdle to wxWindow in wxGTK; doc tweaks
[wxWidgets.git] / include / wx / defs.h
index 394a4e1d37852d5eb743ba4609660fe854a34c74..35c46f8e3ac1a052fb96784108259532fdbd6680 100644 (file)
@@ -72,9 +72,9 @@
 
 // suppress some Visual C++ warnings
 #ifdef __VISUALC__
-#   pragma warning(disable:4244)    // cobversion from double to float
+#   pragma warning(disable:4244)    // conversion from double to float
 #   pragma warning(disable:4100)    // unreferenced formal parameter
-#endif
+#endif // __VISUALC__
 
 // suppress some Salford C++ warnings
 #ifdef __SALFORDC__
 #   pragma suppress 61              // enum has no name (doesn't suppress!)
 #   pragma suppress 106             // unnamed, unused parameter
 #   pragma suppress 571             // Virtual function hiding
-#endif
+#endif // __SALFORDC__
+
+// Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
+// so define it ourselves
+#ifdef __DECCXX
+    #define __cplusplus
+#endif // __DECCXX
+
+// Resolves linking problems under HP-UX
+#if defined(__HPUX__) && !defined(__GNUG__)
+    #define va_list __gnuc_va_list
+#endif // HP-UX
 
 //////////////////////////////////////////////////////////////////////////////////
 // Currently Only MS-Windows/NT, XView and Motif are supported