Local cursors are a pain to deal with and I doubt it's worth the effort to
keep around in the new viewer. Remove that option and the pointer rate
limiting (for similar reasons).
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4474 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx
index 3fa2433..b6926f5 100644
--- a/vncviewer/parameters.cxx
+++ b/vncviewer/parameters.cxx
@@ -21,11 +21,6 @@
using namespace rfb;
-IntParameter pointerEventInterval("PointerEventInterval",
- "Time in milliseconds to rate-limit"
- " successive pointer events", 0);
-BoolParameter useLocalCursor("UseLocalCursor",
- "Render the mouse cursor locally", true);
BoolParameter dotWhenNoCursor("DotWhenNoCursor",
"Show the dot cursor when the server sends an "
"invisible cursor", true);
diff --git a/vncviewer/parameters.h b/vncviewer/parameters.h
index 77c5ae9..37ca52b 100644
--- a/vncviewer/parameters.h
+++ b/vncviewer/parameters.h
@@ -21,8 +21,6 @@
#include <rfb/Configuration.h>
-extern rfb::IntParameter pointerEventInterval;
-extern rfb::BoolParameter useLocalCursor;
extern rfb::BoolParameter dotWhenNoCursor;
extern rfb::StringParameter passwordFile;