]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing build
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 14 Apr 2010 17:06:53 +0000 (17:06 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 14 Apr 2010 17:06:53 +0000 (17:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/iphone/dialog.mm
src/osx/iphone/evtloop.mm

index 62853152ec25225b2938771b58c86e2825aa1189..62732abfabbfa0975f4ef55152c9e8b1d2ec8d18 100644 (file)
@@ -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 );
-    }
-*/
-}
index e050cdd0ce5829832a09eb8347b3733eeee2e7d3..0477771765bc9a1e467c33f15176e5579ec6d23e 100644 (file)
@@ -97,6 +97,15 @@ void wxGUIEventLoop::DoRun()
     }
 }
 
+int wxGUIEventLoop::DoDispatchTimeout(unsigned long timeout)
+{
+    return wxCFEventLoop::DoDispatchTimeout(timeout);
+}
+
+void wxGUIEventLoop::DoStop()
+{
+    return wxCFEventLoop::DoStop();
+}
 // TODO move into a evtloop_osx.cpp
 
 wxModalEventLoop::wxModalEventLoop(wxWindow *modalWindow)