aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPQueryConsoleDataSource.m
diff options
context:
space:
mode:
authorsqlprodev <sqlprodev@northofthree.com>2013-02-14 20:14:07 +0000
committersqlprodev <sqlprodev@northofthree.com>2013-02-14 20:14:07 +0000
commit7d71d9d773ca7ee8b5920e304b7b41b92120943f (patch)
tree305655c168173f1d2bbfa7896a35f245b01f71a1 /Source/SPQueryConsoleDataSource.m
parent47069472a4b5dc6655338a77ec8b1eb9a5f5c3d9 (diff)
downloadsequelpro-7d71d9d773ca7ee8b5920e304b7b41b92120943f.tar.gz
sequelpro-7d71d9d773ca7ee8b5920e304b7b41b92120943f.tar.bz2
sequelpro-7d71d9d773ca7ee8b5920e304b7b41b92120943f.zip
Changing SP_REFACTOR macro to SP_CODA
Diffstat (limited to 'Source/SPQueryConsoleDataSource.m')
-rw-r--r--Source/SPQueryConsoleDataSource.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPQueryConsoleDataSource.m b/Source/SPQueryConsoleDataSource.m
index 92e4fdf2..cc447c7f 100644
--- a/Source/SPQueryConsoleDataSource.m
+++ b/Source/SPQueryConsoleDataSource.m
@@ -42,7 +42,7 @@ static NSUInteger SPMessageTruncateCharacterLength = 256;
*/
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
{
-#ifndef SP_REFACTOR
+#ifndef SP_CODA
return [messagesVisibleSet count];
#else
return 0;
@@ -54,7 +54,7 @@ static NSUInteger SPMessageTruncateCharacterLength = 256;
*/
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
-#ifndef SP_REFACTOR
+#ifndef SP_CODA
NSString *returnValue = nil;
id object = [[messagesVisibleSet objectAtIndex:row] valueForKey:[tableColumn identifier]];