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.h b/rfb/CMsgHandler.h
index 68e5e86..29218c8 100644
--- a/rfb/CMsgHandler.h
+++ b/rfb/CMsgHandler.h
@@ -56,7 +56,7 @@
     virtual void imageRect(const Rect& r, void* pixels);
     virtual void copyRect(const Rect& r, int srcX, int srcY);
 
-    virtual bool processFTMsg(int type) = 0;
+    virtual bool processFTMsg(int type);
 
     ConnParams cp;
   };