aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableContent.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-10-28 12:43:26 +0000
committerstuconnolly <stuart02@gmail.com>2009-10-28 12:43:26 +0000
commit30a49adb59f7770c9fc7739c145389447da8bc39 (patch)
treec6e8c18cceb9a5adc66e5a138f6970e6d4d171a8 /Source/TableContent.m
parentffff0ddc015d77b4e38894b7e823d81854f90491 (diff)
downloadsequelpro-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/TableContent.m')
-rw-r--r--Source/TableContent.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m
index b8626866..c8c5b1f4 100644
--- a/Source/TableContent.m
+++ b/Source/TableContent.m
@@ -2672,7 +2672,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:@"SwitchToTableContentToolbarItemIdentifier"])
+ || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_CONTENT])
return;
[addButton setEnabled:NO];
@@ -2691,7 +2691,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:@"SwitchToTableContentToolbarItemIdentifier"])
+ || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_CONTENT])
return;
if ( ![[[tableDataInstance statusValues] objectForKey:@"Rows"] isNSNull] && selectedTable && [selectedTable length] && [tableDataInstance tableEncoding]) [addButton setEnabled:YES];