summaryrefslogtreecommitdiffstats
path: root/krdc
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 12:26:34 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 12:26:34 -0600
commite1cfdba7757612b1993b598093aa13f2d1d3d345 (patch)
treeade2baab4bc8b4aafef44084ebfeb82a3c769aa1 /krdc
parent246aeb85edaed7bdb44a675c9524719a0341a7be (diff)
downloadtdenetwork-e1cfdba7757612b1993b598093aa13f2d1d3d345.tar.gz
tdenetwork-e1cfdba7757612b1993b598093aa13f2d1d3d345.zip
Fix unintended renaming
Diffstat (limited to 'krdc')
-rw-r--r--krdc/vnc/threads.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krdc/vnc/threads.cpp b/krdc/vnc/threads.cpp
index 05d55df9..cf32d081 100644
--- a/krdc/vnc/threads.cpp
+++ b/krdc/vnc/threads.cpp
@@ -31,7 +31,7 @@
static const int MAXIMUM_WAIT_PERIOD = 8000;
// time to postpone incremental updates that have not been requested explicitly
-static const int POSTPONED_INCRRTQ_WAIT_PERIOD = 110;
+static const int POSTPONED_INCRRQ_WAIT_PERIOD = 110;
static const int MOUSEPRESS_QUEUE_SIZE = 5;
static const int MOUSEMOVE_QUEUE_SIZE = 3;
@@ -317,7 +317,7 @@ void WriterThread::run() {
(clientCut.isNull())) {
if (!m_waiter.wait(&m_lock,
m_lastIncrUpdatePostponed ?
- POSTPONED_INCRRTQ_WAIT_PERIOD : MAXIMUM_WAIT_PERIOD))
+ POSTPONED_INCRRQ_WAIT_PERIOD : MAXIMUM_WAIT_PERIOD))
m_incrementalUpdateRQ = true;
m_lock.unlock();
}