]> git.saurik.com Git - wxWidgets.git/commitdiff
TestDestroy() is not const any more (warnings suppressed)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 22 Jan 1999 18:35:42 +0000 (18:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 22 Jan 1999 18:35:42 +0000 (18:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/thread.h
src/gtk/threadpsx.cpp
src/gtk1/threadpsx.cpp
src/msw/thread.cpp

index cb3f0192361cb9f925196c4746a0694974368a8b..3a850853faed729e12bc371e42d33af3f4834371 100644 (file)
@@ -312,7 +312,7 @@ protected:
     // Returns TRUE if the thread was asked to terminate: this function should
     // be called by the thread from time to time, otherwise the main thread
     // will be left forever in Delete()!
-    bool TestDestroy() const;
+    bool TestDestroy();
 
     // exits from the current thread - can be called only from this thread
     void Exit(void *exitcode = 0);
index fba9ca00379750dfcb81c00b4ab091c7ea394e46..79542d5e192882a87861188ff6b3dbfea461d838 100644 (file)
@@ -634,7 +634,7 @@ void wxThread::Exit(void *status)
 }
 
 // also test whether we were paused
-bool wxThread::TestDestroy() const
+bool wxThread::TestDestroy()
 {
     wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
 
index fba9ca00379750dfcb81c00b4ab091c7ea394e46..79542d5e192882a87861188ff6b3dbfea461d838 100644 (file)
@@ -634,7 +634,7 @@ void wxThread::Exit(void *status)
 }
 
 // also test whether we were paused
-bool wxThread::TestDestroy() const
+bool wxThread::TestDestroy()
 {
     wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
 
index 67cab0e1b81a720c10073752144d25078287c33c..1e642fd8e81fb851421275c360b51a441bee85e8 100644 (file)
@@ -660,7 +660,7 @@ bool wxThread::IsAlive() const
            (p_internal->GetState() == STATE_PAUSED);
 }
 
-bool wxThread::TestDestroy() const
+bool wxThread::TestDestroy()
 {
     wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect);