diff options
author | Jean Guyomarc'h <jean.guyomarch@openwide.fr> | 2015-10-16 09:53:26 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-12-01 12:15:32 -0800 |
commit | ca493337578e9c206ef3a31760b65a11d1884b0e (patch) | |
tree | 311a682ad82c08b6d376bb562470c62517745aaa /src | |
parent | 2d7870083cb14fc67501bbcaeaf74a5002de979c (diff) |
ecore_cocoa_app: don't override init
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa_app.h | 1 | ||||
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa_app.m | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/ecore_cocoa/ecore_cocoa_app.h b/src/lib/ecore_cocoa/ecore_cocoa_app.h index bc2bbd8654..3e206395c3 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_app.h +++ b/src/lib/ecore_cocoa/ecore_cocoa_app.h | |||
@@ -24,7 +24,6 @@ | |||
24 | @interface Ecore_Cocoa_AppDelegate : NSObject <NSApplicationDelegate> | 24 | @interface Ecore_Cocoa_AppDelegate : NSObject <NSApplicationDelegate> |
25 | 25 | ||
26 | + (Ecore_Cocoa_AppDelegate *)appDelegate; | 26 | + (Ecore_Cocoa_AppDelegate *)appDelegate; |
27 | - (id)init; | ||
28 | 27 | ||
29 | @end | 28 | @end |
30 | 29 | ||
diff --git a/src/lib/ecore_cocoa/ecore_cocoa_app.m b/src/lib/ecore_cocoa/ecore_cocoa_app.m index b3bf1af5f4..e7598abd25 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_app.m +++ b/src/lib/ecore_cocoa/ecore_cocoa_app.m | |||
@@ -112,12 +112,6 @@ static Ecore_Cocoa_AppDelegate *_appDelegate = nil; | |||
112 | return _appDelegate; | 112 | return _appDelegate; |
113 | } | 113 | } |
114 | 114 | ||
115 | - (id)init | ||
116 | { | ||
117 | self = [super init]; | ||
118 | return self; | ||
119 | } | ||
120 | |||
121 | - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *) EINA_UNUSED sender | 115 | - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *) EINA_UNUSED sender |
122 | { | 116 | { |
123 | // XXX This should be alterable (by Elm_Window policy) | 117 | // XXX This should be alterable (by Elm_Window policy) |