summaryrefslogtreecommitdiffstats
path: root/unix/x0vncserver/PollingManager.h
diff options
context:
space:
mode:
authorConstantin Kaplinsky <const@tightvnc.com>2008-01-17 19:14:37 +0000
committerConstantin Kaplinsky <const@tightvnc.com>2008-01-17 19:14:37 +0000
commit850de2b818ce002f1a72333b8feb039097c8ce55 (patch)
tree987140015a42d1c26b3fc1f781131d0e5d4ecb9c /unix/x0vncserver/PollingManager.h
parent85b5eb9f67c208dce349d7481e4f2d5bb629c236 (diff)
downloadtigervnc-850de2b818ce002f1a72333b8feb039097c8ce55.tar.gz
tigervnc-850de2b818ce002f1a72333b8feb039097c8ce55.zip
Code refactoring: removed extra arguments for member functions.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2407 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/x0vncserver/PollingManager.h')
-rw-r--r--unix/x0vncserver/PollingManager.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/x0vncserver/PollingManager.h b/unix/x0vncserver/PollingManager.h
index 3ac160cd..22191363 100644
--- a/unix/x0vncserver/PollingManager.h
+++ b/unix/x0vncserver/PollingManager.h
@@ -97,15 +97,15 @@ private:
int checkRow(int x, int y, int w, bool *pChangeFlags);
int checkColumn(int x, int y, int h, bool *pChangeFlags);
- int sendChanges(const bool *pChangeFlags);
- void handleVideo(const bool *pChangeFlags);
- void flagVideoArea(bool *pChangeFlags, bool value);
+ int sendChanges();
+ void handleVideo();
+ void flagVideoArea(bool value);
- // Check neighboring tiles and update pmxChanged[] matrix.
- void checkNeighbors(bool *pChangeFlags);
+ // Check neighboring tiles and update m_changeFlags[].
+ void checkNeighbors();
// DEBUG: Print the list of changed tiles.
- void printChanges(const char *header, const bool *pChangeFlags);
+ void printChanges(const char *header) const;
// Video detection functions.
void detectVideo();