]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/time.h
fixes to previous fixes for Sun's CC 5.0
[wxWidgets.git] / include / wx / time.h
index ec06d912bbc111e4aaa1db9fcfa8d5c14f163c1b..a0137da9320c29f8b903dae358e2052d1cd792d5 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "wx/object.h"
 
-#if wxUSE_TIMEDATE
+#ifdef wxUSE_TIMEDATE
 
 #ifdef __GNUG__
 #pragma interface "time.h"
@@ -55,8 +55,11 @@ public:
     wxTime(const wxDate&, hourTy h =0, minuteTy m =0, secondTy s=0, bool dst =FALSE);
 
     // Convert to string
+#ifndef __SALFORDC__
     operator char *   (void);
     operator wxDate() const;
+#endif
+
     bool operator<(const wxTime& t) const     { return sec < t.sec; }
     bool operator<=(const wxTime& t) const    { return sec <= t.sec; }
     bool operator>(const wxTime& t) const     { return sec > t.sec; }