aboutsummaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2023-01-30 07:51:51 +0100
committerPierre Ossman <ossman@cendio.se>2024-08-12 16:32:53 +0200
commit5c3371d8e7e58fd873699c5309e5a74ed0e9fac4 (patch)
treeee0440cbd2128bd2c50a5c2aa2fda4a8d063da10 /unix
parent685d85a39d1ecc2b9061805a39fff15f0aeef497 (diff)
downloadtigervnc-5c3371d8e7e58fd873699c5309e5a74ed0e9fac4.tar.gz
tigervnc-5c3371d8e7e58fd873699c5309e5a74ed0e9fac4.zip
Remove InputHandler interface
The different uses of this interface are not that closely related and there is no need for them to have a common interface class.
Diffstat (limited to 'unix')
-rw-r--r--unix/x0vncserver/XDesktop.cxx3
-rw-r--r--unix/x0vncserver/XDesktop.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/unix/x0vncserver/XDesktop.cxx b/unix/x0vncserver/XDesktop.cxx
index a00f2bc2..24cba0df 100644
--- a/unix/x0vncserver/XDesktop.cxx
+++ b/unix/x0vncserver/XDesktop.cxx
@@ -600,9 +600,6 @@ void XDesktop::keyEvent(uint32_t keysym, uint32_t xtcode, bool down) {
#endif
}
-void XDesktop::clientCutText(const char* /*str*/) {
-}
-
ScreenSet XDesktop::computeScreenLayout()
{
ScreenSet layout;
diff --git a/unix/x0vncserver/XDesktop.h b/unix/x0vncserver/XDesktop.h
index 4d922bf0..e952fba9 100644
--- a/unix/x0vncserver/XDesktop.h
+++ b/unix/x0vncserver/XDesktop.h
@@ -62,7 +62,6 @@ public:
const char* userName) override;
void pointerEvent(const rfb::Point& pos, int buttonMask) override;
void keyEvent(uint32_t keysym, uint32_t xtcode, bool down) override;
- void clientCutText(const char* str) override;
unsigned int setScreenLayout(int fb_width, int fb_height,
const rfb::ScreenSet& layout) override;