summaryrefslogtreecommitdiff
path: root/Userland/paste.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-02 15:07:41 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-02 15:15:33 +0100
commitc5bd9d4ed1d80ac91d46146565127b0c185f1b43 (patch)
treeb4ee9ba5999778450f8eb4006df89110617b4a10 /Userland/paste.cpp
parent2d39da5405a4527e91e853ddb1e56a539c96c6c1 (diff)
downloadserenity-c5bd9d4ed1d80ac91d46146565127b0c185f1b43.zip
LibGUI: Put all classes in the GUI namespace and remove the leading G
This took me a moment. Welcome to the new world of GUI::Widget! :^)
Diffstat (limited to 'Userland/paste.cpp')
-rw-r--r--Userland/paste.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/paste.cpp b/Userland/paste.cpp
index 0f82a31bce..a5fe71643f 100644
--- a/Userland/paste.cpp
+++ b/Userland/paste.cpp
@@ -41,9 +41,9 @@ int main(int argc, char* argv[])
args_parser.add_option(no_newline, "Do not append a newline", "no-newline", 'n');
args_parser.parse(argc, argv);
- GApplication app(argc, argv);
+ GUI::Application app(argc, argv);
- GClipboard& clipboard = GClipboard::the();
+ auto& clipboard = GUI::Clipboard::the();
auto data_and_type = clipboard.data_and_type();
if (!print_type) {