summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Desktop.cpp
diff options
context:
space:
mode:
authorLenny Maiorani <lenny@serenityos.org>2022-02-26 10:50:04 -0700
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-03-12 14:44:43 -0800
commitfe3b846ac825d8d91923cb1407dcecf66f29513e (patch)
tree86f3e8976bb1a57c9b2818b7a71b228cc708359f /Userland/Libraries/LibGUI/Desktop.cpp
parentb801ddf73d605dd80b5033c3eae3125ec2ffc4bb (diff)
downloadserenity-fe3b846ac825d8d91923cb1407dcecf66f29513e.zip
Libraries: Use default constructors/destructors in LibGUI
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
Diffstat (limited to 'Userland/Libraries/LibGUI/Desktop.cpp')
-rw-r--r--Userland/Libraries/LibGUI/Desktop.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Userland/Libraries/LibGUI/Desktop.cpp b/Userland/Libraries/LibGUI/Desktop.cpp
index 81003eeae1..f962a005c9 100644
--- a/Userland/Libraries/LibGUI/Desktop.cpp
+++ b/Userland/Libraries/LibGUI/Desktop.cpp
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
+ * Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -21,10 +22,6 @@ Desktop& Desktop::the()
return s_the;
}
-Desktop::Desktop()
-{
-}
-
void Desktop::did_receive_screen_rects(Badge<ConnectionToWindowServer>, const Vector<Gfx::IntRect, 4>& rects, size_t main_screen_index, unsigned workspace_rows, unsigned workspace_columns)
{
m_main_screen_index = main_screen_index;