Disabling sheets codepath until we can resolve the nested loop issue.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier 2009-03-22 06:33:37 +00:00
parent c7428e0813
commit 440e5cb2fa
3 changed files with 12 additions and 6 deletions

View File

@ -78,7 +78,8 @@ int wxDirDialog::ShowModal()
{
fprintf(stderr, "No parent!\n");
}
/*
if (parentWindow)
{
NSWindow* nativeParent = parentWindow->GetWXWindow();
@ -92,6 +93,7 @@ int wxDirDialog::ShowModal()
[sheetDelegate release];
}
else
*/
{
returnCode = (NSInteger)[oPanel runModalForDirectory:dir.AsNSString() file:nil types:nil];
}

View File

@ -176,9 +176,9 @@ int wxFileDialog::ShowModal()
if ( HasFlag(wxFD_OVERWRITE_PROMPT) )
{
}
// avoid multiple event handlers on stack
if ( 0 /*parentWindow*/)
/*
if (parentWindow)
{
NSWindow* nativeParent = parentWindow->GetWXWindow();
ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init];
@ -191,6 +191,7 @@ int wxFileDialog::ShowModal()
[sheetDelegate release];
}
else
*/
{
returnCode = [sPanel runModalForDirectory:dir.AsNSString() file:file.AsNSString() ];
}
@ -217,8 +218,8 @@ int wxFileDialog::ShowModal()
[oPanel setCanChooseFiles:YES];
[oPanel setMessage:cf.AsNSString()];
// avoid multiple event handlers on stack
if ( 0 /*parentWindow*/)
/*
if (parentWindow)
{
NSWindow* nativeParent = parentWindow->GetWXWindow();
ModalDialogDelegate* sheetDelegate = [[ModalDialogDelegate alloc] init];
@ -232,6 +233,7 @@ int wxFileDialog::ShowModal()
[sheetDelegate release];
}
else
*/
{
returnCode = [oPanel runModalForDirectory:dir.AsNSString()
file:file.AsNSString() types:types];

View File

@ -192,6 +192,7 @@ int wxMessageDialog::ShowModal()
parentWindow = dynamic_cast<wxNonOwnedWindow*>(wxGetTopLevelParent(GetParent()));
}
/*
if (parentWindow)
{
NSWindow* nativeParent = parentWindow->GetWXWindow();
@ -204,6 +205,7 @@ int wxMessageDialog::ShowModal()
[sheetDelegate release];
}
else
*/
{
button = [alert runModal];
}