diff options
author | Peter Åstrand <astrand@cendio.se> | 2008-12-10 12:59:58 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2008-12-10 12:59:58 +0000 |
commit | f318be8a18a17107010cb9fa8fb4b53dda681829 (patch) | |
tree | 75b28ee0b930614f6156bfd964a967e3888ed58f /win/rfb_win32/SDisplayCorePolling.cxx | |
parent | 3c89661c93f9e01caf5a63d4fbcadd39401a7ff9 (diff) | |
download | tigervnc-f318be8a18a17107010cb9fa8fb4b53dda681829.tar.gz tigervnc-f318be8a18a17107010cb9fa8fb4b53dda681829.zip |
Avoid GCC warning: initializer lists ordered as declarations
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3363 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/rfb_win32/SDisplayCorePolling.cxx')
-rw-r--r-- | win/rfb_win32/SDisplayCorePolling.cxx | 4 |
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); } |