]> source.dussan.org Git - tigervnc.git/commitdiff
Avoid GCC warning: initializer lists ordered as declarations
authorPeter Åstrand <astrand@cendio.se>
Thu, 11 Dec 2008 09:04:02 +0000 (09:04 +0000)
committerPeter Åstrand <astrand@cendio.se>
Thu, 11 Dec 2008 09:04:02 +0000 (09:04 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3380 3789f03b-4d11-0410-bbf8-ca57d06f2519

win/vncviewer/CConnOptions.cxx

index 6069e95268c5c3c3e1019e323d127bf0d14ea6c7..bf9591b78d8be0e89923dd335b9305ac377cb283 100644 (file)
@@ -125,16 +125,32 @@ static IntParameter scale("Scale",
                           100);
 
 CConnOptions::CConnOptions()
-: useLocalCursor(::useLocalCursor), useDesktopResize(::useDesktopResize),
-autoSelect(::autoSelect), fullColour(::fullColour), fullScreen(::fullScreen),
-shared(::sharedConnection), sendPtrEvents(::sendPtrEvents), sendKeyEvents(::sendKeyEvents),
-preferredEncoding(encodingZRLE), clientCutText(::clientCutText), serverCutText(::serverCutText),
-disableWinKeys(::disableWinKeys), protocol3_3(::protocol3_3), acceptBell(::acceptBell),
-lowColourLevel(::lowColourLevel), pointerEventInterval(ptrEventInterval),
-emulate3(::emulate3), monitor(::monitor.getData()), showToolbar(::showToolbar),
-customCompressLevel(::customCompressLevel), compressLevel(::compressLevel), 
-noJpeg(::noJpeg), qualityLevel(::qualityLevel), passwordFile(::passwordFile.getData()),
-autoReconnect(::autoReconnect), autoScaling(::autoScaling), scale(::scale)
+: useLocalCursor (::useLocalCursor), 
+useDesktopResize(::useDesktopResize),
+fullScreen(::fullScreen), 
+fullColour(::fullColour), 
+lowColourLevel(::lowColourLevel), 
+preferredEncoding(encodingZRLE), 
+autoSelect(::autoSelect), 
+shared(::sharedConnection), 
+sendPtrEvents(::sendPtrEvents), 
+sendKeyEvents(::sendKeyEvents),
+showToolbar(::showToolbar), 
+clientCutText(::clientCutText), 
+serverCutText(::serverCutText),
+disableWinKeys(::disableWinKeys), 
+emulate3(::emulate3), 
+pointerEventInterval(ptrEventInterval),
+protocol3_3(::protocol3_3), 
+acceptBell(::acceptBell),
+autoScaling(::autoScaling), 
+scale(::scale), 
+monitor(::monitor.getData()),
+autoReconnect(::autoReconnect), 
+customCompressLevel(::customCompressLevel), 
+compressLevel(::compressLevel), 
+noJpeg(::noJpeg), 
+qualityLevel(::qualityLevel) 
 {
   if (autoSelect) {
     preferredEncoding = encodingZRLE;