From 091dbc0729fa645ec188a544a5b566801a0cd8f3 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sat, 25 Oct 2025 20:03:32 -0400 Subject: [PATCH] chore: IClient.h remove unneeded overrides of nothing --- src/lib/deskflow/IClient.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/deskflow/IClient.h b/src/lib/deskflow/IClient.h index 35882519f..781df217b 100644 --- a/src/lib/deskflow/IClient.h +++ b/src/lib/deskflow/IClient.h @@ -154,10 +154,4 @@ public: virtual std::string getName() const = 0; //@} - - // IScreen overrides - void *getEventTarget() const override = 0; - bool getClipboard(ClipboardID id, IClipboard *) const override = 0; - void getShape(int32_t &x, int32_t &y, int32_t &width, int32_t &height) const override = 0; - void getCursorPos(int32_t &x, int32_t &y) const override = 0; };