]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/toplevel.cpp
Always include sys/time.h and sys/select.h from selectdispatcher.h.
[wxWidgets.git] / src / msw / toplevel.cpp
index e74256523cb68902edc2edda5ac4579937b47ca3..d5b115495e7b8d9988796b8407ca07bef2237cdc 100644 (file)
@@ -482,12 +482,15 @@ bool wxTopLevelWindowMSW::Create(wxWindow *parent,
         sizeReal.SetDefaults(GetDefaultSize());
     }
 
+    // notice that we should append this window to wxTopLevelWindows list
+    // before calling CreateBase() as it behaves differently for TLW and
+    // non-TLW windows
+    wxTopLevelWindows.Append(this);
+
     bool ret = CreateBase(parent, id, pos, sizeReal, style, name);
     if ( !ret )
         return false;
 
-    wxTopLevelWindows.Append(this);
-
     if ( parent )
         parent->AddChild(this);
 
@@ -612,7 +615,7 @@ void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd)
 void wxTopLevelWindowMSW::ShowWithoutActivating()
 {
     if ( !wxWindowBase::Show(true) )
-        return false;
+        return;
         
     DoShowWindow(SW_SHOWNA);
 }