]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/thread/test.cpp
Added code to test the transparency stuff for image rotation
[wxWidgets.git] / samples / thread / test.cpp
index e7b4069ac0b5b89342c6bc0d27d9b104bcc13c39..e2b4bff257505f9ecc70e21effb684ffec555f7c 100644 (file)
@@ -189,6 +189,7 @@ void *MyThread::Entry()
     text.Printf("Thread 0x%x started (priority = %d).\n",
                 GetId(), GetPriority());
     WriteText(text);
+    // wxLogMessage(text); -- test wxLog thread safeness
 
     for ( m_count = 0; m_count < 10; m_count++ )
     {
@@ -205,6 +206,7 @@ void *MyThread::Entry()
 
     text.Printf("Thread 0x%x finished.\n", GetId());
     WriteText(text);
+    // wxLogMessage(text); -- test wxLog thread safeness
 
     return NULL;
 }