diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:16:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:16:52 -0600 |
commit | c03d5480ab0242a8e6b03b466d90d32d39303e71 (patch) | |
tree | 49196ad7975cefd5de40614cc3b92f88092b412b /src/Editor.cpp | |
parent | 6ade7e598a18691f3f92471c4441d856b3ac54dc (diff) | |
download | tqscintilla-c03d5480ab0242a8e6b03b466d90d32d39303e71.tar.gz tqscintilla-c03d5480ab0242a8e6b03b466d90d32d39303e71.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/Editor.cpp')
-rwxr-xr-x | src/Editor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Editor.cpp b/src/Editor.cpp index 1abb78a..045e384 100755 --- a/src/Editor.cpp +++ b/src/Editor.cpp @@ -346,7 +346,7 @@ Editor::Editor() { hasFocus = false; hideSelection = false; inOverstrike = false; - errortqStatus = 0; + errorStatus = 0; mouseDownCaptures = true; bufferedDraw = true; @@ -7210,11 +7210,11 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return hasFocus; case SCI_SETSTATUS: - errortqStatus = wParam; + errorStatus = wParam; break; case SCI_GETSTATUS: - return errortqStatus; + return errorStatus; case SCI_SETMOUSEDOWNCAPTURES: mouseDownCaptures = wParam != 0; |