diff options
author | rowanbeentje <rowan@beent.je> | 2010-11-27 22:51:47 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-11-27 22:51:47 +0000 |
commit | 10117475bae9659b41d41c8d408bee3a3c0d6cf2 (patch) | |
tree | 82f49c6b362c128faf9c58d80bb24fe0bbbd46c6 /Source/SPBundleEditorController.m | |
parent | 9309908a0e5e425314f9e602ed79056134aa7750 (diff) | |
download | sequelpro-10117475bae9659b41d41c8d408bee3a3c0d6cf2.tar.gz sequelpro-10117475bae9659b41d41c8d408bee3a3c0d6cf2.tar.bz2 sequelpro-10117475bae9659b41d41c8d408bee3a3c0d6cf2.zip |
- Fix issues right-clicking in the empty table area ( http://spbug.com/l/1726 )
- Improve 10.5 compatibility when clearing menus ( http://spbug.com/l/1508 , http://spbug.com/l/1829 , http://spbug.com/l/1818 )
- Fix a possible crash when updating database lists
- Update localisable strings
Diffstat (limited to 'Source/SPBundleEditorController.m')
-rw-r--r-- | Source/SPBundleEditorController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m index bddc7a22..71f036e4 100644 --- a/Source/SPBundleEditorController.m +++ b/Source/SPBundleEditorController.m @@ -24,6 +24,7 @@ #import "SPBundleEditorController.h" #import "SPArrayAdditions.h" +#import "SPMenuAdditions.h" #define kBundleNameKey @"bundleName" #define kChildrenKey @"_children_" @@ -223,7 +224,7 @@ [inputNonePopUpMenu addItem:anItem]; [anItem release]; - [inputGeneralScopePopUpMenu removeAllItems]; + [inputGeneralScopePopUpMenu compatibleRemoveAllItems]; anItem = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"General", @"general scope menu label") action:@selector(scopeButtonChanged:) keyEquivalent:@""]; [anItem setTag:kGeneralScopeArrayIndex]; [inputGeneralScopePopUpMenu addItem:anItem]; |