Added some docstrings.

Added wx.DefaultDateTime.
Fixed CalendarCtrl.HitTest


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-02-14 03:11:36 +00:00
parent 78ca56690e
commit 856bf319b5
6 changed files with 34791 additions and 33731 deletions

View File

@@ -580,7 +580,10 @@ public:
// is the date valid (True even for non initialized objects)?
inline bool IsValid() const;
%pythoncode { Ok = IsValid }
%pythoncode { def __nonzero__(self): return self.Ok() };
// get the number of seconds since the Unix epoch - returns (time_t)-1
// if the value is out of range
inline time_t GetTicks() const;
@@ -1092,5 +1095,9 @@ long wxGetUTCTime();
long wxGetCurrentTime();
wxLongLong wxGetLocalTimeMillis();
%immutable;
const wxDateTime wxDefaultDateTime;
%mutable;
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------