]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/menu.mm
Applied Blit system options optimization to StretchBlit
[wxWidgets.git] / src / osx / cocoa / menu.mm
index ea02cf9f2b3c8b2e8f0b3f93744ce9a917054f3f..22fabe534468999459a46df9ebc5ec4e60328732 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id: menu.cpp 54129 2008-06-11 19:30:52Z SC $
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -36,9 +36,9 @@
 
 @implementation wxNSMenu
 
-- (id) init
+- (id) initWithTitle:(NSString*) title
 {
-    [super init];
+    self = [super initWithTitle:title];
     impl = NULL;
     return self;
 }
@@ -69,7 +69,7 @@
 
 - (id) init
 {
-    [super init];
+    self = [super init];
     return self;
 }