chore: ClientProxy1_4 use default for deconstructor

This commit is contained in:
sithlord48
2025-05-01 11:29:58 -04:00
committed by Nick Bolton
parent 7619928d56
commit 6ffd0eb471
2 changed files with 1 additions and 5 deletions

View File

@ -27,10 +27,6 @@ ClientProxy1_4::ClientProxy1_4(const std::string &name, deskflow::IStream *strea
assert(m_server != nullptr);
}
ClientProxy1_4::~ClientProxy1_4()
{
}
void ClientProxy1_4::keyDown(KeyID key, KeyModifierMask mask, KeyButton button, const std::string &lang)
{
ClientProxy1_3::keyDown(key, mask, button, lang);

View File

@ -16,7 +16,7 @@ class ClientProxy1_4 : public ClientProxy1_3
{
public:
ClientProxy1_4(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
~ClientProxy1_4() override;
~ClientProxy1_4() override = default;
//! @name accessors
//@{