diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-09 19:56:03 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-09 19:56:03 +0000 |
commit | 16862af7ec4e57324041b6093aa16ac655a98aac (patch) | |
tree | 938d1730ebc9da4ec1f0f24b2c7a3b7866725a0d /Source | |
parent | 770c2ff8d02a6a9ea9f607c87804a3813b2a0506 (diff) | |
download | sequelpro-16862af7ec4e57324041b6093aa16ac655a98aac.tar.gz sequelpro-16862af7ec4e57324041b6093aa16ac655a98aac.tar.bz2 sequelpro-16862af7ec4e57324041b6093aa16ac655a98aac.zip |
• forgot to shorten SP_ASLIST_ALL_FIELDS in CustomQuery as well
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CustomQuery.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index 0d4207a0..9df31b8b 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -2465,7 +2465,7 @@ [textView showCompletionListFor:@"$SP_ASLIST_ALL_TABLES" atRange:insertRange fuzzySearch:NO]; break; case 8002: - [textView showCompletionListFor:@"$SP_ASLIST_ALL_FIELDS_FROM_SELECTED_TABLE" atRange:insertRange fuzzySearch:NO]; + [textView showCompletionListFor:@"$SP_ASLIST_ALL_FIELDS" atRange:insertRange fuzzySearch:NO]; break; } } |