aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-03-03 16:37:43 +0100
committerPierre Ossman <ossman@cendio.se>2015-03-03 16:37:43 +0100
commitb1cd6ca8f0c6c77ec66cba47004137297ae020d6 (patch)
tree7d5925abbe571b52ab326e5eb1f3eba3586c4294 /vncviewer
parent615a0f58f17d46fe861f753418bfa78ae19bce89 (diff)
downloadtigervnc-b1cd6ca8f0c6c77ec66cba47004137297ae020d6.tar.gz
tigervnc-b1cd6ca8f0c6c77ec66cba47004137297ae020d6.zip
Reorder class initialiser list to match what actually happens
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/Viewport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vncviewer/Viewport.cxx b/vncviewer/Viewport.cxx
index 3d6f4a84..11e7fed6 100644
--- a/vncviewer/Viewport.cxx
+++ b/vncviewer/Viewport.cxx
@@ -104,7 +104,7 @@ static const int fakeKeyBase = 0x200;
Viewport::Viewport(int w, int h, const rfb::PixelFormat& serverPF, CConn* cc_)
: Fl_Widget(0, 0, w, h), cc(cc_), frameBuffer(NULL),
lastPointerPos(0, 0), lastButtonMask(0),
- cursor(NULL), menuCtrlKey(false), menuAltKey(false)
+ menuCtrlKey(false), menuAltKey(false), cursor(NULL)
{
// FLTK STR #2636 gives us the ability to monitor clipboard changes
#ifdef HAVE_FLTK_CLIPBOARD