diff options
author | avenjamin <avenjamin@gmail.com> | 2009-02-28 05:02:27 +0000 |
---|---|---|
committer | avenjamin <avenjamin@gmail.com> | 2009-02-28 05:02:27 +0000 |
commit | ce5a6e4f3d90dcc775f4d81f19e20c412eb5af23 (patch) | |
tree | 977f502a938af428f9433e9850819d3887ddda0d /Source/SPTableData.m | |
parent | b8c9157be916c058f867e24e1d087271de022047 (diff) | |
download | sequelpro-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.m | 7 |
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. |