]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_datetime.i
Avoid assert on wxMac
[wxWidgets.git] / wxPython / src / _datetime.i
index 78b03d2e45984ea0d73a8593f725b3a4f74b7802..a14241a6c69a67f77575b6210438425982429980 100644 (file)
@@ -617,8 +617,10 @@ public:
 
         // is the date valid (True even for non initialized objects)?
     inline bool IsValid() const;
 
         // is the date valid (True even for non initialized objects)?
     inline bool IsValid() const;
-    %pythoncode { Ok = IsValid }
-    %pythoncode { def __nonzero__(self): return self.Ok() };
+    %pythoncode { IsOk = IsValid }
+    %pythoncode { Ok = IsOk }
+   
+    %pythoncode { def __nonzero__(self): return self.IsOk() };
 
     
         // get the number of seconds since the Unix epoch - returns (time_t)-1
 
     
         // get the number of seconds since the Unix epoch - returns (time_t)-1
@@ -1063,6 +1065,13 @@ public:
      def __str__(self):
          return self.Format().encode(wx.GetDefaultPyEncoding())
      }
      def __str__(self):
          return self.Format().encode(wx.GetDefaultPyEncoding())
      }
+
+    %property(Days, GetDays, doc="See `GetDays`");
+    %property(Hours, GetHours, doc="See `GetHours`");
+    %property(Milliseconds, GetMilliseconds, doc="See `GetMilliseconds`");
+    %property(Minutes, GetMinutes, doc="See `GetMinutes`");
+    %property(Seconds, GetSeconds, doc="See `GetSeconds`");
+    %property(Weeks, GetWeeks, doc="See `GetWeeks`");
 };
 
 
 };