From e00eeba851fc25c7361813eb94a36956f75d607e Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 9 Nov 2005 14:08:02 +0000 Subject: [PATCH] allow a SHAPED flag for a dialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/carbon/dialog.cpp b/src/mac/carbon/dialog.cpp index d1aa43669c..4f037becd7 100644 --- a/src/mac/carbon/dialog.cpp +++ b/src/mac/carbon/dialog.cpp @@ -56,7 +56,7 @@ bool wxDialog::Create(wxWindow *parent, wxWindowID id, // All dialogs should really have this style style |= wxTAB_TRAVERSAL; - if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style & ~(wxYES|wxOK|wxNO|wxCANCEL) , name) ) + if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style & ~(wxYES|wxOK|wxNO /*|wxCANCEL*/) , name) ) return FALSE; return TRUE; -- 2.45.2