diff options
author | stuconnolly <stuart02@gmail.com> | 2011-03-07 20:12:52 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-03-07 20:12:52 +0000 |
commit | 1e5288e9840e201a00bcb5ca3035d7aa807f1f8d (patch) | |
tree | 0c1a47953f57b71c41cc7a63e156629c6c9d645b /Source/SPTextView.m | |
parent | 915a3831525bf3a9350648d82f86dd54ae366292 (diff) | |
download | sequelpro-1e5288e9840e201a00bcb5ca3035d7aa807f1f8d.tar.gz sequelpro-1e5288e9840e201a00bcb5ca3035d7aa807f1f8d.tar.bz2 sequelpro-1e5288e9840e201a00bcb5ca3035d7aa807f1f8d.zip |
Bring outline view branch up to date with trunk (r3203:r3224).
Diffstat (limited to 'Source/SPTextView.m')
-rw-r--r-- | Source/SPTextView.m | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 705f2a8a..769d4be8 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -33,6 +33,7 @@ #import "SPAlertSheets.h" #import "RegexKitLite.h" #import "SPBundleHTMLOutputController.h" +#import "SPDatabaseViewController.h" #pragma mark - #pragma mark lex init @@ -415,8 +416,6 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) continue; } - NSString *dbpath = [db substringFromIndex:[db rangeOfString:SPUniqueSchemaDelimiter].location]; - NSMutableArray *sortedTables = [NSMutableArray array]; if(aTableNameExists) { [sortedTables addObject:aTableName_id]; @@ -2675,7 +2674,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) BOOL allowToCheckForUpperCase; // now loop through all the tokens - while (token=yylex()){ + while ((token=yylex())){ allowToCheckForUpperCase = YES; |