chore: remove unused ClientProxy1_7::m_events

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

View File

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

View File

@ -16,7 +16,4 @@ public:
~ClientProxy1_7() override = default;
void secureInputNotification(const std::string &app) const override;
private:
IEventQueue *m_events;
};