]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/msgdlgg.cpp
added default ctor for wxDirDialog
[wxWidgets.git] / src / generic / msgdlgg.cpp
index e693f4eadef9ec0fb1a525e81a30072cc1138206..19aefb7c06d7f0a4e25d7f8b1f6216f30a626c95 100644 (file)
@@ -90,12 +90,19 @@ wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent,
 #endif
 
     // 4) buttons
-    topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxCENTRE | wxALL, 10 );
+    topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 );
 
+    SetAutoLayout( TRUE );
+    SetSizer( topsizer );
+    
     topsizer->SetSizeHints( this );
     topsizer->Fit( this );
-    SetSizer( topsizer );
-    SetAutoLayout( TRUE );
+    wxSize size( GetSize() );
+    if (size.x < size.y*3/2)
+    {
+        size.x = size.y*3/2;
+       SetSize( size );
+    }
 
     Centre( wxBOTH | wxCENTER_FRAME);