diff options
author | stuconnolly <stuart02@gmail.com> | 2009-12-12 16:35:04 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-12-12 16:35:04 +0000 |
commit | 367f3c398a7f83e99d8383af8ce2fdeae5ba9f69 (patch) | |
tree | db36900932707ef65d84961853df6d9f419f9328 /Source/SPTableRelations.m | |
parent | ad93154f88120c37081fc9f816b25a9410b3b89c (diff) | |
download | sequelpro-367f3c398a7f83e99d8383af8ce2fdeae5ba9f69.tar.gz sequelpro-367f3c398a7f83e99d8383af8ce2fdeae5ba9f69.tar.bz2 sequelpro-367f3c398a7f83e99d8383af8ce2fdeae5ba9f69.zip |
Replace the main toolbar's #define'd identifier constants with extern's. This completes the conversion of all constants in SPConstants to extern's.
Diffstat (limited to 'Source/SPTableRelations.m')
-rw-r--r-- | Source/SPTableRelations.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPTableRelations.m b/Source/SPTableRelations.m index 29719f0b..07ab03c4 100644 --- a/Source/SPTableRelations.m +++ b/Source/SPTableRelations.m @@ -232,7 +232,7 @@ */ - (void)tableSelectionChanged:(NSNotification *)notification { - BOOL enableInteraction = ![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_RELATIONS] || ![tableDocumentInstance isWorking]; + BOOL enableInteraction = ![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:SPMainToolbarTableRelations] || ![tableDocumentInstance isWorking]; // To begin enable all interface elements [addRelationButton setEnabled:enableInteraction]; @@ -315,7 +315,7 @@ { // Only proceed if this view is selected. - if (![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_RELATIONS]) + if (![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:SPMainToolbarTableRelations]) return; [addRelationButton setEnabled:NO]; @@ -330,7 +330,7 @@ { // Only proceed if this view is selected. - if (![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:MAIN_TOOLBAR_TABLE_RELATIONS]) + if (![[tableDocumentInstance selectedToolbarItemIdentifier] isEqualToString:SPMainToolbarTableRelations]) return; if ([relationsTableView isEnabled]) { |