]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/utils.mm
Add missing WXK constants for the control keys
[wxWidgets.git] / src / osx / cocoa / utils.mm
index 9a7d446ff8e30746288fdbc5629790d78b07053d..ef5aefa5389935a5b34e5903464fa54e25ad5c6d 100644 (file)
@@ -261,6 +261,9 @@ void wxBell()
 
 wxNSAppController* appcontroller = nil;
 
+NSLayoutManager* gNSLayoutManager = nil;
+
+
 bool wxApp::DoInitGui()
 {
     wxMacAutoreleasePool pool;
@@ -278,6 +281,8 @@ bool wxApp::DoInitGui()
         [NSApp finishLaunching];
 #endif
     }
+    gNSLayoutManager = [[NSLayoutManager alloc] init];
+    
     return true;
 }
 
@@ -289,6 +294,11 @@ void wxApp::DoCleanUp()
         [appcontroller release];
         appcontroller = nil;
     }
+    if ( gNSLayoutManager != nil )
+    {
+        [gNSLayoutManager release];
+        gNSLayoutManager = nil;
+    }
 }
 
 void wxClientDisplayRect(int *x, int *y, int *width, int *height)