diff options
Diffstat (limited to 'common/rfb/VNCServerST.cxx')
-rw-r--r-- | common/rfb/VNCServerST.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index b07f5c35..db142fe4 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -359,15 +359,6 @@ void VNCServerST::setScreenLayout(const ScreenSet& layout) } } -void VNCServerST::setColourMapEntries(int firstColour, int nColours) -{ - std::list<VNCSConnectionST*>::iterator ci, ci_next; - for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { - ci_next = ci; ci_next++; - (*ci)->setColourMapEntriesOrClose(firstColour, nColours); - } -} - void VNCServerST::bell() { std::list<VNCSConnectionST*>::iterator ci, ci_next; |