Move the SetDesktopName parser into CMsgReaderV3 to keep with the separation
of old and new features.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3696 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/rfb/CMsgReaderV3.h b/common/rfb/CMsgReaderV3.h
index 689bb65..a3b604e 100644
--- a/common/rfb/CMsgReaderV3.h
+++ b/common/rfb/CMsgReaderV3.h
@@ -28,7 +28,8 @@
virtual void readServerInit();
virtual void readMsg();
private:
- void readFramebufferUpdate();
+ virtual void readFramebufferUpdate();
+ virtual void readSetDesktopName(int x, int y, int w, int h);
int nUpdateRectsLeft;
};
}