]> git.saurik.com Git - wxWidgets.git/commitdiff
shuffling code back from eventloop to common app utils
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Apr 2010 09:58:19 +0000 (09:58 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Apr 2010 09:58:19 +0000 (09:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/iphone/evtloop.mm
src/osx/iphone/utils.mm

index 38a786578f08d1c1ef31865ebc1280b6fc4514ac..41b8235296d5504ddee17da5825442ab8b4451db 100644 (file)
@@ -79,28 +79,6 @@ static int CalculateUIEventMaskFromEventCategory(wxEventCategory cat)
 }
 */
 
-@interface wxAppDelegate : NSObject <UIApplicationDelegate> {
-}
-
-@end
-
-@implementation wxAppDelegate
-
-- (void)applicationDidFinishLaunching:(UIApplication *)application {   
-       wxTheApp->OnInit();
-}
-
-- (void)applicationWillTerminate:(UIApplication *)application { 
-    wxCloseEvent event;
-    wxTheApp->OnEndSession(event);
-}
-
-- (void)dealloc {
-       [super dealloc];
-}
-
-@end
-
 wxGUIEventLoop::wxGUIEventLoop()
 {
 }
index 66d1970deeab9af25b3184ff5ba3fcf62e27d871..884a2d16e0e1cb42d3b0ed44dafd8639b0f361d2 100644 (file)
@@ -78,14 +78,6 @@ bool wxApp::CallOnInit()
     return true;
 }
 
-int wxApp::OnRun()
-{
-    wxMacAutoreleasePool pool;
-    const char* appname = "app";
-    UIApplicationMain( 1, (char**) &appname, nil, @"wxAppDelegate" );
-    return 1;
-}
-
 bool wxApp::DoInitGui()
 {
     return true;