]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/dialog.cpp
Removed __WXUNIVERSAL__ part of condition
[wxWidgets.git] / src / mac / dialog.cpp
index cab8d1906c609fb827a1cb7879478ace7f490f46..ad9de2c9698be90dd3e843e6fc20ca64a5e46a81 100644 (file)
@@ -63,7 +63,7 @@ bool wxDialog::Create(wxWindow *parent, wxWindowID id,
     if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
         return FALSE;
     
-    MacCreateRealWindow( title , pos , size , MacRemoveBordersFromStyle(style)  , name ) ;
+    MacCreateRealWindow( title , pos , size , MacRemoveBordersFromStyle(style) & ~(wxYES|wxOK|wxNO|wxCANCEL) , name ) ;
     
     m_macWindowBackgroundTheme = kThemeBrushDialogBackgroundActive ;
     SetThemeWindowBackground( (WindowRef) m_macWindow , m_macWindowBackgroundTheme , false ) ;
@@ -92,7 +92,7 @@ void wxDialog::SetModal(bool flag)
 
 wxDialog::~wxDialog()
 {
-    m_isBeingDeleted = TRUE ;
+    m_isBeingDeleted = TRUE;
     Show(FALSE);
 }