]> source.dussan.org Git - tigervnc.git/commitdiff
Replaced pure virtual function with an empty function, to resolve compilation
authorConstantin Kaplinsky <const@tightvnc.com>
Thu, 19 Jan 2006 13:05:10 +0000 (13:05 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Thu, 19 Jan 2006 13:05:10 +0000 (13:05 +0000)
problems.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@470 3789f03b-4d11-0410-bbf8-ca57d06f2519

rfb/CMsgHandler.cxx
rfb/CMsgHandler.h

index 101091694da61c01124a4a6c755f05d3bc9db8eb..cc7c11fe57f38b0fab72c5ddebe81b5078872fa9 100644 (file)
@@ -96,4 +96,8 @@ void CMsgHandler::copyRect(const Rect& r, int srcX, int srcY)
 {
 }
 
+bool CMsgHandler::processFTMsg(int type)
+{
+  return false;
+}
 
index 68e5e861dd1231090eb2354385afccc0d11bc4c6..29218c88346a4d7c2b6c6500d4250f1bba0a5708 100644 (file)
@@ -56,7 +56,7 @@ namespace rfb {
     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;
   };