]> git.saurik.com Git - wxWidgets.git/commitdiff
don't remove docs for wxThreadHelper::Create; list it in deprecated methods changelog...
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 16 Dec 2008 19:44:49 +0000 (19:44 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 16 Dec 2008 19:44:49 +0000 (19:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
interface/wx/thread.h

index 04bce2249d24ace581c4a1318223fc11e6f23de2..fba0a5bbbb04117ce0efc900636c4a303526de51 100644 (file)
@@ -235,6 +235,8 @@ Deprecated methods and their replacements
   it with SetDeviceClippingRegion() if this was the correct thing to do in your
   code.
 - wxTE_AUTO_SCROLL style is deprecated as it's always on by default anyhow.
+- wxThreadHelper::Create() has been deprecated in favour of wxThreadHelper::CreateThread
+  which has a better name for a mix-in class, and allows setting the thread type.
 
 
 Major new features in this release
index 20d0f92a608d4210e801fd0a36f0eb806484069f..b167648634d540a9b430c1d84ba829c96140ca16 100644 (file)
@@ -454,6 +454,12 @@ public:
     */
     virtual ExitCode Entry() = 0;
 
+    /**
+        @deprecated
+        Use CreateThread() instead.
+    */
+    wxThreadError Create(unsigned int stackSize = 0);
+
     /**
         Creates a new thread of the given @a kind.