]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/msgqueue.h
forward declare wxVideoMode as struct, not class, now that it was reverted to be...
[wxWidgets.git] / interface / msgqueue.h
index 75b9b1978e4ac7a93731bf84b86e33413eb106ad..2b23de8b9a4d87eb0dd5aa23fb829f10b7ed8a33 100644 (file)
@@ -1,13 +1,12 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        msgqueue.h
-// Purpose:     documentation for wxMessageQueue<T> class
+// Purpose:     interface of wxMessageQueue<T>
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
 /**
-    @class wxMessageQueueT
     @wxheader{msgqueue.h}
 
     wxMessageQueue allows passing messages between threads.
@@ -24,8 +23,7 @@
     @nolibrary
     @category{FIXME}
 
-    @seealso
-    wxThread
+    @see wxThread
 */
 class wxMessageQueue<T>
 {
@@ -34,7 +32,7 @@ public:
         Returns @true if the object had been initialized successfully, @false
         if an error occurred.
     */
-    bool IsOk();
+    bool IsOk() const;
 
     /**
         Add a message to this queue and signal the threads waiting for messages
@@ -68,3 +66,4 @@ public:
     */
     wxMessageQueue();
 };
+