]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
drawing optimization fix
[wxWidgets.git] / src / msw / frame.cpp
index 96d7733cacc2411fb98c6cef5c77e32d3948563b..0f5da8a297eb42096a887377401a2712bcd77703 100644 (file)
@@ -626,9 +626,9 @@ bool wxFrame::MSWOnPaint(void)
     if (m_iconized)
     {
       HICON the_icon;
-    if (m_icon.Ok())
-      the_icon = (HICON) m_icon.GetHICON();
-      if (the_icon == 0)
+      if (m_icon.Ok())
+        the_icon = (HICON) m_icon.GetHICON();
+      else
         the_icon = (HICON) m_defaultIcon;
 
       PAINTSTRUCT ps;
@@ -1037,7 +1037,6 @@ void wxFrame::PositionToolBar(void)
 // propagate our state change to all child frames
 void wxFrame::IconizeChildFrames(bool bIconize)
 {
-  wxWindow *child = NULL;
   for ( wxNode *node = GetChildren()->First(); node; node = node->Next() ) {
     wxWindow *win = (wxWindow *)node->Data();
     if ( win->IsKindOf(CLASSINFO(wxFrame)) ) {