commit | 0bdbe0452c4770b4f4c3445adaa8691b25685a80 | [log] [tgz] |
---|---|---|
author | Constantin Kaplinsky <const@tightvnc.com> | Thu Jan 19 13:05:10 2006 +0000 |
committer | Constantin Kaplinsky <const@tightvnc.com> | Thu Jan 19 13:05:10 2006 +0000 |
tree | 5f9c738a3a82782a0a1adc4aa4051002b89cdd58 | |
parent | 4cea5e76c8f9ba67c0ed17aa212cca55e7aa21ed [diff] [blame] |
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
diff --git a/rfb/CMsgHandler.cxx b/rfb/CMsgHandler.cxx index 1010916..cc7c11f 100644 --- a/rfb/CMsgHandler.cxx +++ b/rfb/CMsgHandler.cxx
@@ -96,4 +96,8 @@ { } +bool CMsgHandler::processFTMsg(int type) +{ + return false; +}