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;
+}