]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/doxygen/overviews/thread.h
PCH-less compilation fix
[wxWidgets.git] / docs / doxygen / overviews / thread.h
index ca8eb56d6ca6406cf5f8bcedb6986b13cca4965b..27344955838e6dfc83cf31480ffd64c41bc3fa02 100644 (file)
@@ -6,9 +6,9 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-/*!
+/**
 
-@page overview_thread Multithreading Overview
+@page overview_thread Multithreading
 
 Classes: wxThread, wxMutex, wxCriticalSection, wxCondition
 
@@ -45,7 +45,7 @@ Win32 a thread can only access GDI objects such as pens, brushes, c created by
 itself and not by the other threads).
 
 For communication between secondary threads and the main thread, you may use
-wxEvtHandler::AddPendingEvent or its short version wxPostEvent. These functions
+wxEvtHandler::QueueEvent or its short version ::wxQueueEvent. These functions
 have a thread-safe implementation so that they can be used as they are for
 sending events from one thread to another. However there is no built in method
 to send messages to the worker threads and you will need to use the available