From 2d39da5405a4527e91e853ddb1e56a539c96c6c1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 2 Feb 2020 12:34:39 +0100 Subject: LibCore: Put all classes in the Core namespace and remove the leading C I've been wanting to do this for a long time. It's time we start being consistent about how this stuff works. The new convention is: - "LibFoo" is a userspace library that provides the "Foo" namespace. That's it :^) This was pretty tedious to convert and I didn't even start on LibGUI yet. But it's coming up next. --- Userland/pro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/pro.cpp') diff --git a/Userland/pro.cpp b/Userland/pro.cpp index f647371cc6..09e58d5de3 100644 --- a/Userland/pro.cpp +++ b/Userland/pro.cpp @@ -45,7 +45,7 @@ int main(int argc, char** argv) return 1; } - CEventLoop loop; + Core::EventLoop loop; auto protocol_client = LibProtocol::Client::construct(); auto download = protocol_client->start_download(url.to_string()); -- cgit v1.2.3