]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/time.h
Added wxMiniFrame
[wxWidgets.git] / include / wx / time.h
index 74461c55afcbfeacdf19b55acae98cb867321c49..aed87d86ee69d81c818941cd4dbca617b72db1bd 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "wx/object.h"
 
-#if USE_TIMEDATE
+#if wxUSE_TIMEDATE
 
 #ifdef __GNUG__
 #pragma interface "time.h"
@@ -49,6 +49,7 @@ private:                // static member functions
 public:
         wxTime();                         // current time 
         wxTime(clockTy s)                 { sec = s; }
+        void operator=(const wxTime& t)     { sec = t.sec; } // Ordering required for some compilers
         wxTime(const wxTime& t)                 { (*this) = t ; }
                  wxTime(hourTy h, minuteTy m, secondTy s =0, bool dst =FALSE);
                  wxTime(const wxDate&, hourTy h =0, minuteTy m =0, secondTy s=0, bool dst =FALSE);
@@ -61,7 +62,6 @@ public:
         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; }
-        void operator=(const wxTime& t)     { sec = t.sec; }
         friend wxTime operator+(const wxTime& t, long s)    { return wxTime(t.sec+s); }
                  friend wxTime operator+(long s, const wxTime& t)    { return wxTime(t.sec+s); }
                  long operator-(const wxTime& t) const     { return sec - t.sec; }
@@ -91,7 +91,7 @@ public:
 };
 
 #endif
-  // USE_TIMEDATE
+  // wxUSE_TIMEDATE
 #endif
     // _WX_TIMEH__