aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/macExample/macExample/MCTApplication.mm
diff options
context:
space:
mode:
Diffstat (limited to 'example/mac/macExample/macExample/MCTApplication.mm')
-rw-r--r--example/mac/macExample/macExample/MCTApplication.mm22
1 files changed, 0 insertions, 22 deletions
diff --git a/example/mac/macExample/macExample/MCTApplication.mm b/example/mac/macExample/macExample/MCTApplication.mm
deleted file mode 100644
index f2c4c597..00000000
--- a/example/mac/macExample/macExample/MCTApplication.mm
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// MCTApplication.m
-// macExample
-//
-// Created by DINH Viêt Hoà on 4/3/13.
-// Copyright (c) 2013 MailCore. All rights reserved.
-//
-
-#import "MCTApplication.h"
-
-#import <mailcore/mailcore.h>
-
-@implementation MCTApplication
-
-- (void) sendEvent:(NSEvent *)theEvent
-{
- mailcore::AutoreleasePool * pool = new mailcore::AutoreleasePool();
- [super sendEvent:theEvent];
- pool->release();
-}
-
-@end