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/TableSource.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/TableSource.m')
-rw-r--r-- | Source/TableSource.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableSource.m b/Source/TableSource.m index f12a5f86..f5900bc5 100644 --- a/Source/TableSource.m +++ b/Source/TableSource.m @@ -1060,7 +1060,7 @@ returns a dictionary containing enum/set field names as key and possible values // 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:@"SwitchToTableStructureToolbarItemIdentifier"]) + || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_STRUCTURE]) return; [tableSourceView setEnabled:NO]; @@ -1084,7 +1084,7 @@ returns a dictionary containing enum/set field names as key and possible values // Only re-enable elements if the current tab is the structure view if ([aNotification object] != tableDocumentInstance - || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:@"SwitchToTableStructureToolbarItemIdentifier"]) + || ![[[aNotification object] selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_STRUCTURE]) return; BOOL editingEnabled = ([tablesListInstance tableType] == SP_TABLETYPE_TABLE); |