aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPQueryFavoriteManager.m
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2009-11-10 00:18:53 +0000
committeravenjamin <avenjamin@gmail.com>2009-11-10 00:18:53 +0000
commitf04ce0c7a9266238d3391f03c9193ca92071812e (patch)
treeee30a0c7069377ee6296fd09cd10112cbbab99fe /Source/SPQueryFavoriteManager.m
parentc5a38fc6f465683d01e0dbc79b7e857ab2a43ef7 (diff)
downloadsequelpro-f04ce0c7a9266238d3391f03c9193ca92071812e.tar.gz
sequelpro-f04ce0c7a9266238d3391f03c9193ca92071812e.tar.bz2
sequelpro-f04ce0c7a9266238d3391f03c9193ca92071812e.zip
Set keyboard shortcut for Remove button in alert dialogs to command R.
Fix method declaration type mismatch warning for sheetDidEnd.
Diffstat (limited to 'Source/SPQueryFavoriteManager.m')
-rw-r--r--Source/SPQueryFavoriteManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPQueryFavoriteManager.m b/Source/SPQueryFavoriteManager.m
index e99706db..8acf2f0a 100644
--- a/Source/SPQueryFavoriteManager.m
+++ b/Source/SPQueryFavoriteManager.m
@@ -250,7 +250,7 @@
NSArray *buttons = [alert buttons];
// Change the alert's cancel button to have the key equivalent of return
- [[buttons objectAtIndex:0] setKeyEquivalent:@"d"];
+ [[buttons objectAtIndex:0] setKeyEquivalent:@"r"];
[[buttons objectAtIndex:0] setKeyEquivalentModifierMask:NSCommandKeyMask];
[[buttons objectAtIndex:1] setKeyEquivalent:@"\r"];
@@ -273,7 +273,7 @@
NSArray *buttons = [alert buttons];
// Change the alert's cancel button to have the key equivalent of return
- [[buttons objectAtIndex:0] setKeyEquivalent:@"d"];
+ [[buttons objectAtIndex:0] setKeyEquivalent:@"r"];
[[buttons objectAtIndex:0] setKeyEquivalentModifierMask:NSCommandKeyMask];
[[buttons objectAtIndex:1] setKeyEquivalent:@"\r"];