chore: remove unused ClientProxy1_5::m_events

This commit is contained in:
sithlord48
2025-09-24 18:06:21 -04:00
committed by Nick Bolton
parent e35a2b1c29
commit 9dae55fc6f
2 changed files with 1 additions and 5 deletions

View File

@ -19,8 +19,7 @@
//
ClientProxy1_5::ClientProxy1_5(const std::string &name, deskflow::IStream *stream, Server *server, IEventQueue *events)
: ClientProxy1_4(name, stream, server, events),
m_events(events)
: ClientProxy1_4(name, stream, server, events)
{
// do nothing
}

View File

@ -30,7 +30,4 @@ public:
bool parseMessage(const uint8_t *code) override;
void fileChunkReceived() const;
void dragInfoReceived() const;
private:
IEventQueue *m_events;
};