summaryrefslogtreecommitdiffstats
path: root/src/AutoComplete.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:00 -0600
commit6ade7e598a18691f3f92471c4441d856b3ac54dc (patch)
treeca18ed733e273279bab574978806068e506c241a /src/AutoComplete.cpp
parent5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170 (diff)
downloadtqscintilla-6ade7e598a18691f3f92471c4441d856b3ac54dc.tar.gz
tqscintilla-6ade7e598a18691f3f92471c4441d856b3ac54dc.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.
Diffstat (limited to 'src/AutoComplete.cpp')
-rwxr-xr-xsrc/AutoComplete.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AutoComplete.cpp b/src/AutoComplete.cpp
index 753adca..daa5fbb 100755
--- a/src/AutoComplete.cpp
+++ b/src/AutoComplete.cpp
@@ -45,11 +45,11 @@ bool AutoComplete::Active() {
void AutoComplete::Start(Window &parent, int ctrlID,
int position, Point location, int startLen_,
- int lineHeight, bool unicodeMode) {
+ int lineHeight, bool tqunicodeMode) {
if (active) {
Cancel();
}
- lb->Create(parent, ctrlID, location, lineHeight, unicodeMode);
+ lb->Create(parent, ctrlID, location, lineHeight, tqunicodeMode);
lb->Clear();
active = true;
startLen = startLen_;