diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:08:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:08:48 -0600 |
commit | b3566a6c6754f013b55063c28b90995be612da96 (patch) | |
tree | dd590262fefe39114300e6d376b68df0b435c0f2 /src/AutoComplete.cpp | |
parent | 1aef904f94a86fecbc71888bc94a790ff36f0403 (diff) | |
download | tqscintilla-b3566a6c6754f013b55063c28b90995be612da96.tar.gz tqscintilla-b3566a6c6754f013b55063c28b90995be612da96.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/AutoComplete.cpp')
-rwxr-xr-x | src/AutoComplete.cpp | 4 |
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_; |