chore: ClientProxy1_4 use default for deconstructor
This commit is contained in:
@ -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);
|
||||
|
||||
@ -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
|
||||
//@{
|
||||
|
||||
Reference in New Issue
Block a user