diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2006-01-19 13:05:10 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2006-01-19 13:05:10 +0000 |
commit | 0bdbe0452c4770b4f4c3445adaa8691b25685a80 (patch) | |
tree | 5f9c738a3a82782a0a1adc4aa4051002b89cdd58 /rfb/CMsgHandler.cxx | |
parent | 4cea5e76c8f9ba67c0ed17aa212cca55e7aa21ed (diff) | |
download | tigervnc-0bdbe0452c4770b4f4c3445adaa8691b25685a80.tar.gz tigervnc-0bdbe0452c4770b4f4c3445adaa8691b25685a80.zip |
Replaced pure virtual function with an empty function, to resolve compilation
problems.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@470 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rfb/CMsgHandler.cxx')
-rw-r--r-- | rfb/CMsgHandler.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rfb/CMsgHandler.cxx b/rfb/CMsgHandler.cxx index 10109169..cc7c11fe 100644 --- a/rfb/CMsgHandler.cxx +++ b/rfb/CMsgHandler.cxx @@ -96,4 +96,8 @@ void CMsgHandler::copyRect(const Rect& r, int srcX, int srcY) { } +bool CMsgHandler::processFTMsg(int type) +{ + return false; +} |