]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datetime.h
Added Set/GetQuickBestSize
[wxWidgets.git] / include / wx / datetime.h
index b0edbf9efe5042c9b1d0d83bcf03026b8d31b3c8..80303eba3b72450ac800325bcfc926d4ee5701a7 100644 (file)
@@ -1114,6 +1114,10 @@ public:
     // constructors
     // ------------------------------------------------------------------------
 
+        // return the timespan for the given number of milliseconds
+    static wxTimeSpan Milliseconds(wxLongLong ms) { return wxTimeSpan(0, 0, 0, ms); }
+    static wxTimeSpan Millisecond() { return Milliseconds(1); }
+
         // return the timespan for the given number of seconds
     static wxTimeSpan Seconds(wxLongLong sec) { return wxTimeSpan(0, 0, sec); }
     static wxTimeSpan Second() { return Seconds(1); }