mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-13 21:13:31 +08:00
chore: PrimaryClient, use default for deconstructors / constructors
This commit is contained in:
parent
c8734755c5
commit
d643e4b189
@ -26,11 +26,6 @@ PrimaryClient::PrimaryClient(const std::string &name, deskflow::Screen *screen)
|
||||
}
|
||||
}
|
||||
|
||||
PrimaryClient::~PrimaryClient()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void PrimaryClient::reconfigure(uint32_t activeSides)
|
||||
{
|
||||
m_screen->reconfigure(activeSides);
|
||||
|
||||
@ -27,7 +27,7 @@ public:
|
||||
\c name is the name of the server and \p screen is primary screen.
|
||||
*/
|
||||
PrimaryClient(const std::string &name, deskflow::Screen *screen);
|
||||
~PrimaryClient() override;
|
||||
~PrimaryClient() override = default;
|
||||
|
||||
#ifdef TEST_ENV
|
||||
PrimaryClient() : BaseClientProxy("")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user