diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2008-01-18 14:33:05 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2008-01-18 14:33:05 +0000 |
commit | adebffbd8b5005b0ae388525612ffb990118d4e0 (patch) | |
tree | f2647f4960a6d25d6400a149a261a2447292b4d9 /unix/x0vncserver/PollingManager.h | |
parent | ec45c48753517707dcedaf298c11180af0d8637b (diff) | |
download | tigervnc-adebffbd8b5005b0ae388525612ffb990118d4e0.tar.gz tigervnc-adebffbd8b5005b0ae388525612ffb990118d4e0.zip |
Made a number of member variables constants.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2410 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/x0vncserver/PollingManager.h')
-rw-r--r-- | unix/x0vncserver/PollingManager.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/unix/x0vncserver/PollingManager.h b/unix/x0vncserver/PollingManager.h index 25323b57..9f3ff883 100644 --- a/unix/x0vncserver/PollingManager.h +++ b/unix/x0vncserver/PollingManager.h @@ -64,12 +64,12 @@ protected: VNCServer *m_server; Image *m_image; - int m_bytesPerPixel; + const int m_bytesPerPixel; - int m_offsetLeft; - int m_offsetTop; - int m_width; - int m_height; + const int m_offsetLeft; + const int m_offsetTop; + const int m_width; + const int m_height; private: @@ -120,9 +120,9 @@ private: Image *m_rowImage; // one row of the framebuffer Image *m_columnImage; // one column of the framebuffer - int m_widthTiles; // shortcut for ((m_width + 31) / 32) - int m_heightTiles; // shortcut for ((m_height + 31) / 32) - int m_numTiles; // shortcut for (m_widthTiles * m_heightTiles) + const int m_widthTiles; // shortcut for ((m_width + 31) / 32) + const int m_heightTiles; // shortcut for ((m_height + 31) / 32) + const int m_numTiles; // shortcut for (m_widthTiles * m_heightTiles) // m_changeFlags[] array will hold boolean values corresponding to // each 32x32 tile. If a value is true, then we've detected a change |