diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-28 16:21:37 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-28 16:21:37 +0000 |
commit | 11c54136a6c919e933ec3c26a3eca512da9fae7b (patch) | |
tree | f3fddedab5463b4bc3a21bc6103a4f2d6aecaa7b /Source/SPTableView.m | |
parent | a3cdae0d22d41758152fd864f49bb894c1bd464e (diff) | |
download | sequelpro-11c54136a6c919e933ec3c26a3eca512da9fae7b.tar.gz sequelpro-11c54136a6c919e933ec3c26a3eca512da9fae7b.tar.bz2 sequelpro-11c54136a6c919e933ec3c26a3eca512da9fae7b.zip |
Rename TableDocument to SPDatabaseDocument.
Diffstat (limited to 'Source/SPTableView.m')
-rw-r--r-- | Source/SPTableView.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPTableView.m b/Source/SPTableView.m index a1e44fb6..c94bc686 100644 --- a/Source/SPTableView.m +++ b/Source/SPTableView.m @@ -25,7 +25,7 @@ #import "SPTableView.h" #import "SPQueryFavoriteManager.h" #import "SPArrayAdditions.h" -#import "TableDocument.h" +#import "SPDatabaseDocument.h" #import "SPConstants.h" @implementation SPTableView @@ -38,12 +38,12 @@ { // Try to retrieve a reference to the table document (assuming this is frontmost tab) - TableDocument *parentTableDocument = nil; + SPDatabaseDocument *parentTableDocument = nil; if ([[[[[self window] delegate] class] description] isEqualToString:@"SPWindowController"]) { parentTableDocument = [[[self window] delegate] selectedTableDocument]; } - // If TableDocument is performing a task suppress any context menu + // If SPDatabaseDocument is performing a task suppress any context menu if (parentTableDocument && [parentTableDocument isWorking]) return nil; |