diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-09-03 16:15:26 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-09-03 16:15:26 +0000 |
commit | a7e61c61e5ceb8f5d9a7a4d2cfa7b83df95e55bb (patch) | |
tree | 0e4511b2c595685ebc2502e6ac172b73f03bb6c1 /Source/TableContent.m | |
parent | 623b55eeb355aaceb3ffe3e13197944bef6fb1d4 (diff) | |
download | sequelpro-a7e61c61e5ceb8f5d9a7a4d2cfa7b83df95e55bb.tar.gz sequelpro-a7e61c61e5ceb8f5d9a7a4d2cfa7b83df95e55bb.tar.bz2 sequelpro-a7e61c61e5ceb8f5d9a7a4d2cfa7b83df95e55bb.zip |
• renamed SPQueryConsole to SPQueryController since it controls not only the query console but also query favorites and history application-wide
- accessible via: [SPQueryController sharedQueryController]
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r-- | Source/TableContent.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m index f08867f7..5d05a5e2 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -35,7 +35,7 @@ #import "CMCopyTable.h" #import "SPDataCellFormatter.h" #import "SPTableData.h" -#import "SPQueryConsole.h" +#import "SPQueryController.h" #import "SPStringAdditions.h" #import "SPArrayAdditions.h" #import "SPTextViewAdditions.h" @@ -1376,7 +1376,7 @@ isEditingRow = NO; isEditingNewRow = NO; currentlyEditingRow = -1; - [[SPQueryConsole sharedQueryConsole] showErrorInConsole:[NSString stringWithFormat:NSLocalizedString(@"/* WARNING %@ No rows have been affected */\n", @"warning shown in the console when no rows have been affected after writing to the db"), currentTime]]; + [[SPQueryController sharedQueryController] showErrorInConsole:[NSString stringWithFormat:NSLocalizedString(@"/* WARNING %@ No rows have been affected */\n", @"warning shown in the console when no rows have been affected after writing to the db"), currentTime]]; return YES; // On success... |