From 4b9712582c3665f80f5ee5449bba0aa248eef6aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C4=83t=C4=83lin=20R=C4=83ceanu?= Date: Sun, 4 Oct 2015 10:42:39 +0300 Subject: [PATCH] Correct wxThread::Delete() default parameter documentation. It is actually wxTHREAD_WAIT_DEFAULT and not always wxTHREAD_WAIT_BLOCK. Closes https://github.com/wxWidgets/wxWidgets/pull/107 --- interface/wx/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/thread.h b/interface/wx/thread.h index 61becf5847..2a4ea24b5b 100644 --- a/interface/wx/thread.h +++ b/interface/wx/thread.h @@ -1076,7 +1076,7 @@ public: See @ref thread_deletion for a broader explanation of this routine. */ wxThreadError Delete(ExitCode *rc = NULL, - wxThreadWait waitMode = wxTHREAD_WAIT_BLOCK); + wxThreadWait waitMode = wxTHREAD_WAIT_DEFAULT); /** Returns the number of system CPUs or -1 if the value is unknown.