aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableData.m
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2009-02-28 05:02:27 +0000
committeravenjamin <avenjamin@gmail.com>2009-02-28 05:02:27 +0000
commitce5a6e4f3d90dcc775f4d81f19e20c412eb5af23 (patch)
tree977f502a938af428f9433e9850819d3887ddda0d /Source/SPTableData.m
parentb8c9157be916c058f867e24e1d087271de022047 (diff)
downloadsequelpro-ce5a6e4f3d90dcc775f4d81f19e20c412eb5af23.tar.gz
sequelpro-ce5a6e4f3d90dcc775f4d81f19e20c412eb5af23.tar.bz2
sequelpro-ce5a6e4f3d90dcc775f4d81f19e20c412eb5af23.zip
Cleaned up warnings when building against 10.5 SDK
Diffstat (limited to 'Source/SPTableData.m')
-rw-r--r--Source/SPTableData.m7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/SPTableData.m b/Source/SPTableData.m
index aff7b456..1ff4917c 100644
--- a/Source/SPTableData.m
+++ b/Source/SPTableData.m
@@ -459,11 +459,12 @@
/*
* Retrieve the status of a table as a dictionary and add it to the local cache for reuse.
*/
-- (BOOL) updateStatusInformationForCurrentTable
+- (BOOL)updateStatusInformationForCurrentTable
{
- // Catch unselected tables and return nil
- if ([[tableListInstance tableName] isEqualToString:@""] || ![tableListInstance tableName]) return nil;
+ // Catch unselected tables and return false
+ if ([[tableListInstance tableName] isEqualToString:@""] || ![tableListInstance tableName])
+ return FALSE;
// When views are selected, populate the table with a default dictionary - all values, including comment, return no
// meaningful information for views so we may as well skip the query.