diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-09 19:27:56 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-09 19:27:56 +0000 |
commit | 770c2ff8d02a6a9ea9f607c87804a3813b2a0506 (patch) | |
tree | a42df9b810986b711e25bea4cc2f4c4d1f429f4f /Source | |
parent | 3f62dd5ed7d69d239ebcc49b64628d76a7f0f95e (diff) | |
download | sequelpro-770c2ff8d02a6a9ea9f607c87804a3813b2a0506.tar.gz sequelpro-770c2ff8d02a6a9ea9f607c87804a3813b2a0506.tar.bz2 sequelpro-770c2ff8d02a6a9ea9f607c87804a3813b2a0506.zip |
• shortened SP_ASLIST_ALL_FIELDS_FROM_SELECTED_TABLE to SP_ASLIST_ALL_FIELDS since it's too long
• some GUI improvements for Query Fav Editor's "Insert placeholder"
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMTextView.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index 51b2f580..d65e2c9d 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -1141,7 +1141,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) for(id w in arr) [possibleCompletions addObject:[NSDictionary dictionaryWithObjectsAndKeys:w, @"display", @"database-small", @"image", @"", @"isRef", nil]]; } - else if([kind isEqualToString:@"$SP_ASLIST_ALL_FIELDS_FROM_SELECTED_TABLE"]) { + else if([kind isEqualToString:@"$SP_ASLIST_ALL_FIELDS"]) { NSString *currentDb = nil; NSString *currentTable = nil; |