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
diff --git a/unix/x0vncserver/PollingManager.h b/unix/x0vncserver/PollingManager.h
index 25323b5..9f3ff88 100644
--- a/unix/x0vncserver/PollingManager.h
+++ b/unix/x0vncserver/PollingManager.h
@@ -64,12 +64,12 @@
   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 @@
   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