X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d50c11074c2a6e00068b3374021ad8c31b6f2c5..fa21f43888305a78c6fdc10d0b3d310b271f76f7:/wxPython/src/_datetime.i diff --git a/wxPython/src/_datetime.i b/wxPython/src/_datetime.i index d03feb00ff..322c03a7eb 100644 --- a/wxPython/src/_datetime.i +++ b/wxPython/src/_datetime.i @@ -895,9 +895,16 @@ public: class wxTimeSpan { public: + + // TODO: Need an input typemap for wxLongLong... + + + // return the timespan for the given number of milliseconds + static wxTimeSpan Milliseconds(/*wxLongLong*/ long ms); + static wxTimeSpan Millisecond(); // return the timespan for the given number of seconds - static wxTimeSpan Seconds(long sec); + static wxTimeSpan Seconds(/*wxLongLong*/ long sec); static wxTimeSpan Second(); // return the timespan for the given number of minutes @@ -924,8 +931,8 @@ public: // milliseconds) wxTimeSpan(long hours = 0, long minutes = 0, - long seconds = 0, - long milliseconds = 0); + /*wxLongLong*/ long seconds = 0, + /*wxLongLong*/ long milliseconds = 0); ~wxTimeSpan();