diff options
author | stuconnolly <stuart02@gmail.com> | 2009-10-28 12:43:26 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-10-28 12:43:26 +0000 |
commit | 30a49adb59f7770c9fc7739c145389447da8bc39 (patch) | |
tree | c6e8c18cceb9a5adc66e5a138f6970e6d4d171a8 /Source/CustomQuery.m | |
parent | ffff0ddc015d77b4e38894b7e823d81854f90491 (diff) | |
download | sequelpro-30a49adb59f7770c9fc7739c145389447da8bc39.tar.gz sequelpro-30a49adb59f7770c9fc7739c145389447da8bc39.tar.bz2 sequelpro-30a49adb59f7770c9fc7739c145389447da8bc39.zip |
Replace the multiple occurrences of hard coded toolbar identifiers for the main toolbar with constants.
Diffstat (limited to 'Source/CustomQuery.m')
-rw-r--r-- | Source/CustomQuery.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index 00201015..b9896a28 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -2565,7 +2565,7 @@ // Only proceed if the current document is the notifying document, and only if // this view is selected. if ([aNotification object] != tableDocumentInstance - || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:@"SwitchToRunQueryToolbarItemIdentifier"]) + || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_CUSTOM_QUERY]) return; [runSelectionButton setEnabled:NO]; @@ -2583,7 +2583,7 @@ // Only proceed if the current document is the notifying document, and only if // this view is selected. if ([aNotification object] != tableDocumentInstance - || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:@"SwitchToRunQueryToolbarItemIdentifier"]) + || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_CUSTOM_QUERY]) return; if (selectionButtonCanBeEnabled) { |