summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/rfb_win32/SDisplayCorePolling.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/rfb_win32/SDisplayCorePolling.cxx b/win/rfb_win32/SDisplayCorePolling.cxx
index 510ffb1f..349b3d59 100644
--- a/win/rfb_win32/SDisplayCorePolling.cxx
+++ b/win/rfb_win32/SDisplayCorePolling.cxx
@@ -32,8 +32,8 @@ const int POLLING_SEGMENTS = 16;
const int SDisplayCorePolling::pollTimerId = 1;
SDisplayCorePolling::SDisplayCorePolling(SDisplay* d, UpdateTracker* ut, int pollInterval_)
- : MsgWindow(_T("rfb::win32::SDisplayCorePolling")), updateTracker(ut),
- pollTimer(getHandle(), pollTimerId), pollNextStrip(false), display(d) {
+ : MsgWindow(_T("rfb::win32::SDisplayCorePolling")),
+ pollTimer(getHandle(), pollTimerId), pollNextStrip(false), display(d), updateTracker(ut) {
pollInterval = __rfbmax(10, (pollInterval_ / POLLING_SEGMENTS));
copyrect.setUpdateTracker(ut);
}