diff options
Diffstat (limited to 'krdc/vnc/threads.cpp')
-rw-r--r-- | krdc/vnc/threads.cpp | 4 |
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(); } |