]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/toplevel.cpp
Applied patch #877159: Joinable threads might crash app if deleted right after Wait.
[wxWidgets.git] / src / msw / toplevel.cpp
index 2376e815e60e42068218b739716bdbd1445c2a51..760362ee3d835ff4521ce15befdda9dc575175e7 100644 (file)
@@ -134,6 +134,24 @@ END_EVENT_TABLE()
 // wxTopLevelWindowMSW creation
 // ----------------------------------------------------------------------------
 
+wxTopLevelWindowMSW::wxTopLevelWindowMSW()
+{
+    Init();
+}
+
+wxTopLevelWindowMSW::wxTopLevelWindowMSW(wxWindow *parent,
+                                         wxWindowID id,
+                                         const wxString& title,
+                                         const wxPoint& pos,
+                                         const wxSize& size,
+                                         long style,
+                                         const wxString& name)
+{
+    Init();
+
+    (void)Create(parent, id, title, pos, size, style, name);
+}
+
 void wxTopLevelWindowMSW::Init()
 {
     m_iconized =