chore: ClientProxy1_2 use default for deconstructor

This commit is contained in:
sithlord48
2025-05-01 11:28:09 -04:00
committed by Nick Bolton
parent b26ca77ff1
commit d70c7fe720
2 changed files with 1 additions and 6 deletions

View File

@ -20,11 +20,6 @@ ClientProxy1_2::ClientProxy1_2(const std::string &name, deskflow::IStream *strea
// do nothing
}
ClientProxy1_2::~ClientProxy1_2()
{
// do nothing
}
void ClientProxy1_2::mouseRelativeMove(int32_t xRel, int32_t yRel)
{
LOG((CLOG_DEBUG2 "send mouse relative move to \"%s\" %d,%d", getName().c_str(), xRel, yRel));

View File

@ -16,7 +16,7 @@ class ClientProxy1_2 : public ClientProxy1_1
{
public:
ClientProxy1_2(const std::string &name, deskflow::IStream *adoptedStream, IEventQueue *events);
~ClientProxy1_2() override;
~ClientProxy1_2() override = default;
// IClient overrides
void mouseRelativeMove(int32_t xRel, int32_t yRel) override;