summaryrefslogtreecommitdiffstats
path: root/src/AutoComplete.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:23 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:23 -0600
commit5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170 (patch)
treef6be5c0cc8881dc1d2df5e4d56e59c388b52cd41 /src/AutoComplete.cpp
parent2ca85d336093fd44a5effafbc44dde7edd4e30ec (diff)
downloadtqscintilla-5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.tar.gz
tqscintilla-5e3fc3a36b58c4e1cb48e31a350f76b7a81b3170.zip
Rename a number of old tq methods that are no longer tq specific
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 daa5fbb..753adca 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 tqunicodeMode) {
+ int lineHeight, bool unicodeMode) {
if (active) {
Cancel();
}
- lb->Create(parent, ctrlID, location, lineHeight, tqunicodeMode);
+ lb->Create(parent, ctrlID, location, lineHeight, unicodeMode);
lb->Clear();
active = true;
startLen = startLen_;