mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-13 21:13:31 +08:00
chore: ClientProxy1_6 use default for deconstructor
This commit is contained in:
parent
6ffd0eb471
commit
f4264d71a1
@ -28,10 +28,6 @@ ClientProxy1_6::ClientProxy1_6(const std::string &name, deskflow::IStream *strea
|
||||
);
|
||||
}
|
||||
|
||||
ClientProxy1_6::~ClientProxy1_6()
|
||||
{
|
||||
}
|
||||
|
||||
void ClientProxy1_6::setClipboard(ClipboardID id, const IClipboard *clipboard)
|
||||
{
|
||||
// ignore if this clipboard is already clean
|
||||
|
||||
@ -16,7 +16,7 @@ class ClientProxy1_6 : public ClientProxy1_5
|
||||
{
|
||||
public:
|
||||
ClientProxy1_6(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
|
||||
~ClientProxy1_6() override;
|
||||
~ClientProxy1_6() override = default;
|
||||
|
||||
void setClipboard(ClipboardID id, const IClipboard *clipboard) override;
|
||||
bool recvClipboard() override;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user