aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/main.mm
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/main.mm')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/main.mm5
1 files changed, 1 insertions, 4 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/main.mm b/example/ios/iOS UI Test/iOS UI Test/main.mm
index 34793ec3..c9092479 100644
--- a/example/ios/iOS UI Test/iOS UI Test/main.mm
+++ b/example/ios/iOS UI Test/iOS UI Test/main.mm
@@ -9,12 +9,9 @@
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
-#import "Application.h"
#import <MailCore/MailCore.h>
int main(int argc, char *argv[]) {
mailcore::logEnabled = false;
- mailcore::AutoreleasePool *pool = new mailcore::AutoreleasePool();
- return UIApplicationMain(argc, argv, NSStringFromClass([Application class]), NSStringFromClass([AppDelegate class]));
- pool->release();
+ return UIApplicationMain(argc, argv, nil, @"AppDelegate");
}