X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/44f97e649a50b3ef6ec8e90667e4d60429386647..29188693b3b8ba4b07762df012cc652d421dae79:/src/osx/iphone/dialog.mm diff --git a/src/osx/iphone/dialog.mm b/src/osx/iphone/dialog.mm index 62853152ec..62732abfab 100644 --- a/src/osx/iphone/dialog.mm +++ b/src/osx/iphone/dialog.mm @@ -34,32 +34,3 @@ void wxDialog::DoShowWindowModal() void wxDialog::EndWindowModal() { } - -void wxDialog::DoShowModal() -{ - wxCHECK_RET( !IsModal(), wxT("DoShowModal() called twice") ); - - wxModalDialogs.Append(this); - - SetFocus() ; -/* - WindowGroupRef windowGroup; - WindowGroupRef formerParentGroup; - bool resetGroupParent = false; - - if ( GetParent() == NULL ) - { - windowGroup = GetWindowGroup(windowRef) ; - formerParentGroup = GetWindowGroupParent( windowGroup ); - SetWindowGroupParent( windowGroup, GetWindowGroupOfClass( kMovableModalWindowClass ) ); - resetGroupParent = true; - } -*/ - -/* - if ( resetGroupParent ) - { - SetWindowGroupParent( windowGroup , formerParentGroup ); - } -*/ -}