diff options
author | Pierre Ossman <ossman@cendio.se> | 2015-03-03 16:37:43 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2015-03-03 16:37:43 +0100 |
commit | b1cd6ca8f0c6c77ec66cba47004137297ae020d6 (patch) | |
tree | 7d5925abbe571b52ab326e5eb1f3eba3586c4294 /vncviewer | |
parent | 615a0f58f17d46fe861f753418bfa78ae19bce89 (diff) | |
download | tigervnc-b1cd6ca8f0c6c77ec66cba47004137297ae020d6.tar.gz tigervnc-b1cd6ca8f0c6c77ec66cba47004137297ae020d6.zip |
Reorder class initialiser list to match what actually happens
Diffstat (limited to 'vncviewer')
-rw-r--r-- | vncviewer/Viewport.cxx | 2 |
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 |