Misc validity fixes to samples/xrc/rc/*.xrc.
[wxWidgets.git] / tests / thread / queue.cpp
index a70108db6094b51ee9b051d2bb7662eb1e53c6aa..2bfb5456ada02f7f0f34020dcdc79467221f6014 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     Unit test for wxMessageQueue
 // Author:      Evgeniy Tarassov
 // Created:     31/10/2007
-// RCS-ID:      $Id$
 // Copyright:   (c) 2007 Evgeniy Tarassov
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -87,7 +86,7 @@ private:
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( QueueTestCase );
 
-// also include in it's own registry so that these tests can be run alone
+// also include in its own registry so that these tests can be run alone
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( QueueTestCase, "QueueTestCase" );
 
 // this function creates the given number of threads and posts msgCount
@@ -174,7 +173,7 @@ void *QueueTestCase::MyThread::Entry()
     while ( messagesReceived < m_maxMsgCount )
     {
         wxMessageQueueError result;
-        int msg;
+        int msg = -1; // just to suppress "possibly uninitialized" warnings
 
         if ( m_type == WaitWithTimeout )
             result = m_queue.ReceiveTimeout(1000, msg);