]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/evtloop.cpp
placeholder
[wxWidgets.git] / src / msw / evtloop.cpp
index 2a4da8b4463926bca94bedd999af3a6be80c47ca..1909600fa739eaeef56c7a2b9e66c849de3abf3c 100644 (file)
@@ -281,7 +281,7 @@ int wxEventLoop::Run()
     // wxModalEventLoop depends on this (so we can't just use ON_BLOCK_EXIT or
     // something similar here)
 #if wxUSE_EXCEPTIONS
-    bool retryAfterException;
+    bool retryAfterException = false;
     do {
         retryAfterException=false;
 #endif
@@ -332,7 +332,8 @@ int wxEventLoop::Run()
                     // there is none yet. OTOH, wxCATCH_ALL isn't
                     // expanded unless wxUSE_EXCEPTIONS, so its
                     // safe to use throw here.
-                    throw;  
+                    throw;
+                default:
                     break;
     }
         )