]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/stopwatch.h
Fixed some function/define paramter names to match old docs.
[wxWidgets.git] / interface / stopwatch.h
index 883c0b5aa8d4f36202cceb4c9962991bd1dd608b..982cb0571ca08ffa2acf520749c19c0485c07945 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        stopwatch.h
-// Purpose:     documentation for wxStopWatch class
+// Purpose:     interface of wxStopWatch
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -28,8 +28,7 @@
     @library{wxbase}
     @category{misc}
 
-    @seealso
-    wxTimer
+    @see wxTimer
 */
 class wxStopWatch
 {
@@ -42,7 +41,6 @@ public:
     /**
         Pauses the stop watch. Call Resume() to resume
         time measuring again.
-        
         If this method is called several times, @c Resume() must be called the same
         number of times to really resume the stop watch. You may, however, call
         Start() to resume it unconditionally.
@@ -65,10 +63,11 @@ public:
         of
         Pause().
     */
-    long Time();
+    long Time() const;
 };
 
 
+
 // ============================================================================
 // Global functions/macros
 // ============================================================================
@@ -76,21 +75,21 @@ public:
 /**
     Returns the number of seconds since local time 00:00:00 Jan 1st 1970.
 
-    @sa wxDateTime::Now
+    @see wxDateTime::Now
 */
 long wxGetLocalTime();
 
 /**
     Returns the number of seconds since GMT 00:00:00 Jan 1st 1970.
 
-    @sa wxDateTime::Now
+    @see wxDateTime::Now
 */
 long wxGetUTCTime();
 
 /**
     Returns the number of milliseconds since local time 00:00:00 Jan 1st 1970.
 
-    @sa wxDateTime::Now, wxLongLong
+    @see wxDateTime::Now, wxLongLong
 */
 wxLongLong wxGetLocalTimeMillis();