summaryrefslogtreecommitdiff
path: root/Servers
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-06 15:04:03 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-06 15:04:03 +0100
commitd17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf (patch)
tree6c5ed42a008c6d74e427909eaed8e52182e0f7eb /Servers
parent7415e6ef9fbd1529cd13db315ccda25c52f56105 (diff)
downloadserenity-d17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf.zip
LibCore: Remove leading C from filenames
Diffstat (limited to 'Servers')
-rw-r--r--Servers/AudioServer/ASClientConnection.cpp2
-rw-r--r--Servers/AudioServer/ASEventLoop.h6
-rw-r--r--Servers/AudioServer/ASMixer.h2
-rw-r--r--Servers/AudioServer/main.cpp2
-rw-r--r--Servers/LookupServer/LookupServer.cpp12
-rw-r--r--Servers/LookupServer/LookupServer.h2
-rw-r--r--Servers/LookupServer/main.cpp2
-rw-r--r--Servers/ProtocolServer/HttpDownload.cpp4
-rw-r--r--Servers/ProtocolServer/HttpProtocol.cpp4
-rw-r--r--Servers/ProtocolServer/main.cpp4
-rw-r--r--Servers/SystemServer/Service.cpp4
-rw-r--r--Servers/SystemServer/Service.h4
-rw-r--r--Servers/SystemServer/main.cpp6
-rw-r--r--Servers/TelnetServer/Client.cpp4
-rw-r--r--Servers/TelnetServer/Client.h4
-rw-r--r--Servers/TelnetServer/main.cpp6
-rw-r--r--Servers/WindowServer/WSClientConnection.h2
-rw-r--r--Servers/WindowServer/WSCompositor.h4
-rw-r--r--Servers/WindowServer/WSEvent.h2
-rw-r--r--Servers/WindowServer/WSEventLoop.cpp4
-rw-r--r--Servers/WindowServer/WSEventLoop.h6
-rw-r--r--Servers/WindowServer/WSMenu.h2
-rw-r--r--Servers/WindowServer/WSMenuManager.cpp2
-rw-r--r--Servers/WindowServer/WSMenuManager.h2
-rw-r--r--Servers/WindowServer/WSWindow.h2
-rw-r--r--Servers/WindowServer/WSWindowManager.h4
-rw-r--r--Servers/WindowServer/WSWindowSwitcher.h2
-rw-r--r--Servers/WindowServer/main.cpp2
28 files changed, 51 insertions, 51 deletions
diff --git a/Servers/AudioServer/ASClientConnection.cpp b/Servers/AudioServer/ASClientConnection.cpp
index 2eedfc9a51..cdb4512434 100644
--- a/Servers/AudioServer/ASClientConnection.cpp
+++ b/Servers/AudioServer/ASClientConnection.cpp
@@ -29,7 +29,7 @@
#include "AudioClientEndpoint.h"
#include <AK/SharedBuffer.h>
#include <LibAudio/ABuffer.h>
-#include <LibCore/CEventLoop.h>
+#include <LibCore/EventLoop.h>
#include <errno.h>
#include <stdio.h>
#include <sys/socket.h>
diff --git a/Servers/AudioServer/ASEventLoop.h b/Servers/AudioServer/ASEventLoop.h
index 03fe9a4d8c..5f88ddf759 100644
--- a/Servers/AudioServer/ASEventLoop.h
+++ b/Servers/AudioServer/ASEventLoop.h
@@ -27,9 +27,9 @@
#pragma once
#include "ASMixer.h"
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CLocalServer.h>
-#include <LibCore/CNotifier.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/LocalServer.h>
+#include <LibCore/Notifier.h>
class ASEventLoop {
public:
diff --git a/Servers/AudioServer/ASMixer.h b/Servers/AudioServer/ASMixer.h
index fdd599a246..174f22f6c9 100644
--- a/Servers/AudioServer/ASMixer.h
+++ b/Servers/AudioServer/ASMixer.h
@@ -33,7 +33,7 @@
#include <AK/RefCounted.h>
#include <AK/WeakPtr.h>
#include <LibAudio/ABuffer.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <LibThread/Lock.h>
#include <LibThread/Thread.h>
diff --git a/Servers/AudioServer/main.cpp b/Servers/AudioServer/main.cpp
index 42c37b9642..e56d183f12 100644
--- a/Servers/AudioServer/main.cpp
+++ b/Servers/AudioServer/main.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include "ASEventLoop.h"
diff --git a/Servers/LookupServer/LookupServer.cpp b/Servers/LookupServer/LookupServer.cpp
index 530c6d0c17..42522ba49d 100644
--- a/Servers/LookupServer/LookupServer.cpp
+++ b/Servers/LookupServer/LookupServer.cpp
@@ -30,12 +30,12 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
-#include <LibCore/CConfigFile.h>
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CFile.h>
-#include <LibCore/CLocalServer.h>
-#include <LibCore/CLocalSocket.h>
-#include <LibCore/CUdpSocket.h>
+#include <LibCore/ConfigFile.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/File.h>
+#include <LibCore/LocalServer.h>
+#include <LibCore/LocalSocket.h>
+#include <LibCore/UdpSocket.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Servers/LookupServer/LookupServer.h b/Servers/LookupServer/LookupServer.h
index 9f9a221707..b547ec3ef7 100644
--- a/Servers/LookupServer/LookupServer.h
+++ b/Servers/LookupServer/LookupServer.h
@@ -29,7 +29,7 @@
#include "DNSRequest.h"
#include "DNSResponse.h"
#include <AK/HashMap.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
namespace Core {
class LocalSocket;
diff --git a/Servers/LookupServer/main.cpp b/Servers/LookupServer/main.cpp
index f921f5d668..37eddbcd45 100644
--- a/Servers/LookupServer/main.cpp
+++ b/Servers/LookupServer/main.cpp
@@ -25,7 +25,7 @@
*/
#include "LookupServer.h"
-#include <LibCore/CEventLoop.h>
+#include <LibCore/EventLoop.h>
#include <stdio.h>
int main(int argc, char** argv)
diff --git a/Servers/ProtocolServer/HttpDownload.cpp b/Servers/ProtocolServer/HttpDownload.cpp
index 57dff970e7..af83dfa625 100644
--- a/Servers/ProtocolServer/HttpDownload.cpp
+++ b/Servers/ProtocolServer/HttpDownload.cpp
@@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CHttpJob.h>
-#include <LibCore/CHttpResponse.h>
+#include <LibCore/HttpJob.h>
+#include <LibCore/HttpResponse.h>
#include <ProtocolServer/HttpDownload.h>
HttpDownload::HttpDownload(PSClientConnection& client, NonnullRefPtr<Core::HttpJob>&& job)
diff --git a/Servers/ProtocolServer/HttpProtocol.cpp b/Servers/ProtocolServer/HttpProtocol.cpp
index a5b3df70ad..25bbd19f86 100644
--- a/Servers/ProtocolServer/HttpProtocol.cpp
+++ b/Servers/ProtocolServer/HttpProtocol.cpp
@@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CHttpJob.h>
-#include <LibCore/CHttpRequest.h>
+#include <LibCore/HttpJob.h>
+#include <LibCore/HttpRequest.h>
#include <ProtocolServer/HttpDownload.h>
#include <ProtocolServer/HttpProtocol.h>
diff --git a/Servers/ProtocolServer/main.cpp b/Servers/ProtocolServer/main.cpp
index 6f5dc73495..e2cd971b52 100644
--- a/Servers/ProtocolServer/main.cpp
+++ b/Servers/ProtocolServer/main.cpp
@@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CLocalServer.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/LocalServer.h>
#include <LibIPC/ClientConnection.h>
#include <ProtocolServer/HttpProtocol.h>
#include <ProtocolServer/PSClientConnection.h>
diff --git a/Servers/SystemServer/Service.cpp b/Servers/SystemServer/Service.cpp
index 1af41157bb..1c36381d8e 100644
--- a/Servers/SystemServer/Service.cpp
+++ b/Servers/SystemServer/Service.cpp
@@ -28,8 +28,8 @@
#include <AK/HashMap.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
-#include <LibCore/CConfigFile.h>
-#include <LibCore/CLocalSocket.h>
+#include <LibCore/ConfigFile.h>
+#include <LibCore/LocalSocket.h>
#include <fcntl.h>
#include <grp.h>
#include <libgen.h>
diff --git a/Servers/SystemServer/Service.h b/Servers/SystemServer/Service.h
index ebf06582d4..ad08f3b7b7 100644
--- a/Servers/SystemServer/Service.h
+++ b/Servers/SystemServer/Service.h
@@ -28,8 +28,8 @@
#include <AK/RefPtr.h>
#include <AK/String.h>
-#include <LibCore/CNotifier.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Notifier.h>
+#include <LibCore/Object.h>
namespace AK {
class JsonObject;
diff --git a/Servers/SystemServer/main.cpp b/Servers/SystemServer/main.cpp
index 629925834f..e03686fc51 100644
--- a/Servers/SystemServer/main.cpp
+++ b/Servers/SystemServer/main.cpp
@@ -26,9 +26,9 @@
#include "Service.h"
#include <AK/Assertions.h>
-#include <LibCore/CConfigFile.h>
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CFile.h>
+#include <LibCore/ConfigFile.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/File.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
diff --git a/Servers/TelnetServer/Client.cpp b/Servers/TelnetServer/Client.cpp
index a13ab7c42c..dd924ec4cd 100644
--- a/Servers/TelnetServer/Client.cpp
+++ b/Servers/TelnetServer/Client.cpp
@@ -31,8 +31,8 @@
#include <AK/StringBuilder.h>
#include <AK/StringView.h>
#include <AK/Types.h>
-#include <LibCore/CNotifier.h>
-#include <LibCore/CTCPSocket.h>
+#include <LibCore/Notifier.h>
+#include <LibCore/TCPSocket.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Servers/TelnetServer/Client.h b/Servers/TelnetServer/Client.h
index 06efeb4528..fe345d38e3 100644
--- a/Servers/TelnetServer/Client.h
+++ b/Servers/TelnetServer/Client.h
@@ -29,8 +29,8 @@
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Types.h>
-#include <LibCore/CNotifier.h>
-#include <LibCore/CTCPSocket.h>
+#include <LibCore/Notifier.h>
+#include <LibCore/TCPSocket.h>
#include "Command.h"
#include "Parser.h"
diff --git a/Servers/TelnetServer/main.cpp b/Servers/TelnetServer/main.cpp
index efa8468454..6acb900b61 100644
--- a/Servers/TelnetServer/main.cpp
+++ b/Servers/TelnetServer/main.cpp
@@ -32,9 +32,9 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Types.h>
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CTCPServer.h>
-#include <LibCore/CTCPSocket.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/TCPServer.h>
+#include <LibCore/TCPSocket.h>
#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
diff --git a/Servers/WindowServer/WSClientConnection.h b/Servers/WindowServer/WSClientConnection.h
index 23f0235456..06906c1e78 100644
--- a/Servers/WindowServer/WSClientConnection.h
+++ b/Servers/WindowServer/WSClientConnection.h
@@ -30,7 +30,7 @@
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <AK/WeakPtr.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
#include <LibGfx/Bitmap.h>
#include <LibIPC/ClientConnection.h>
#include <WindowServer/WSEvent.h>
diff --git a/Servers/WindowServer/WSCompositor.h b/Servers/WindowServer/WSCompositor.h
index 7c113d84a7..380968573a 100644
--- a/Servers/WindowServer/WSCompositor.h
+++ b/Servers/WindowServer/WSCompositor.h
@@ -28,8 +28,8 @@
#include <AK/OwnPtr.h>
#include <AK/RefPtr.h>
-#include <LibCore/CObject.h>
-#include <LibCore/CTimer.h>
+#include <LibCore/Object.h>
+#include <LibCore/Timer.h>
#include <LibGfx/DisjointRectSet.h>
#include <LibGfx/Bitmap.h>
diff --git a/Servers/WindowServer/WSEvent.h b/Servers/WindowServer/WSEvent.h
index 78f1c11a2d..c4c46e06ec 100644
--- a/Servers/WindowServer/WSEvent.h
+++ b/Servers/WindowServer/WSEvent.h
@@ -28,7 +28,7 @@
#include <AK/String.h>
#include <Kernel/KeyCode.h>
-#include <LibCore/CEvent.h>
+#include <LibCore/Event.h>
#include <LibGfx/Rect.h>
#include <WindowServer/WSCursor.h>
#include <WindowServer/WSWindowType.h>
diff --git a/Servers/WindowServer/WSEventLoop.cpp b/Servers/WindowServer/WSEventLoop.cpp
index 93358b1718..b204a11d7e 100644
--- a/Servers/WindowServer/WSEventLoop.cpp
+++ b/Servers/WindowServer/WSEventLoop.cpp
@@ -27,8 +27,8 @@
#include "WSClipboard.h"
#include <Kernel/KeyCode.h>
#include <Kernel/MousePacket.h>
-#include <LibCore/CLocalSocket.h>
-#include <LibCore/CObject.h>
+#include <LibCore/LocalSocket.h>
+#include <LibCore/Object.h>
#include <WindowServer/WSClientConnection.h>
#include <WindowServer/WSCursor.h>
#include <WindowServer/WSEvent.h>
diff --git a/Servers/WindowServer/WSEventLoop.h b/Servers/WindowServer/WSEventLoop.h
index 77c1d2abe5..10950df928 100644
--- a/Servers/WindowServer/WSEventLoop.h
+++ b/Servers/WindowServer/WSEventLoop.h
@@ -27,9 +27,9 @@
#pragma once
#include <AK/ByteBuffer.h>
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CLocalServer.h>
-#include <LibCore/CNotifier.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/LocalServer.h>
+#include <LibCore/Notifier.h>
class WSClientConnection;
diff --git a/Servers/WindowServer/WSMenu.h b/Servers/WindowServer/WSMenu.h
index 2a0f615bbc..0601ac9bf1 100644
--- a/Servers/WindowServer/WSMenu.h
+++ b/Servers/WindowServer/WSMenu.h
@@ -29,7 +29,7 @@
#include <AK/NonnullOwnPtrVector.h>
#include <AK/String.h>
#include <AK/WeakPtr.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
#include <LibGfx/Rect.h>
#include <WindowServer/WSCursor.h>
#include <WindowServer/WSMenuItem.h>
diff --git a/Servers/WindowServer/WSMenuManager.cpp b/Servers/WindowServer/WSMenuManager.cpp
index 6217911714..92a9cab149 100644
--- a/Servers/WindowServer/WSMenuManager.cpp
+++ b/Servers/WindowServer/WSMenuManager.cpp
@@ -26,7 +26,7 @@
#include <AK/FileSystemPath.h>
#include <AK/QuickSort.h>
-#include <LibCore/CDirIterator.h>
+#include <LibCore/DirIterator.h>
#include <LibGfx/Font.h>
#include <LibGfx/Painter.h>
#include <WindowServer/WSMenuManager.h>
diff --git a/Servers/WindowServer/WSMenuManager.h b/Servers/WindowServer/WSMenuManager.h
index df0074d9b0..3909e0fd0d 100644
--- a/Servers/WindowServer/WSMenuManager.h
+++ b/Servers/WindowServer/WSMenuManager.h
@@ -29,7 +29,7 @@
#include "WSMenu.h"
#include "WSMenuBar.h"
#include <AK/HashMap.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
#include <WindowServer/WSWindow.h>
class AClientConnection;
diff --git a/Servers/WindowServer/WSWindow.h b/Servers/WindowServer/WSWindow.h
index 215cfdc177..d9469e00ce 100644
--- a/Servers/WindowServer/WSWindow.h
+++ b/Servers/WindowServer/WSWindow.h
@@ -28,7 +28,7 @@
#include <AK/InlineLinkedList.h>
#include <AK/String.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
#include <LibGfx/DisjointRectSet.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Rect.h>
diff --git a/Servers/WindowServer/WSWindowManager.h b/Servers/WindowServer/WSWindowManager.h
index 2704adc9cc..7b5f2ae1ea 100644
--- a/Servers/WindowServer/WSWindowManager.h
+++ b/Servers/WindowServer/WSWindowManager.h
@@ -30,8 +30,8 @@
#include <AK/HashTable.h>
#include <AK/InlineLinkedList.h>
#include <AK/WeakPtr.h>
-#include <LibCore/CConfigFile.h>
-#include <LibCore/CElapsedTimer.h>
+#include <LibCore/ConfigFile.h>
+#include <LibCore/ElapsedTimer.h>
#include <LibGfx/Color.h>
#include <LibGfx/DisjointRectSet.h>
#include <LibGfx/Painter.h>
diff --git a/Servers/WindowServer/WSWindowSwitcher.h b/Servers/WindowServer/WSWindowSwitcher.h
index a82011d612..d1fc98113f 100644
--- a/Servers/WindowServer/WSWindowSwitcher.h
+++ b/Servers/WindowServer/WSWindowSwitcher.h
@@ -28,7 +28,7 @@
#include <AK/Vector.h>
#include <AK/WeakPtr.h>
-#include <LibCore/CObject.h>
+#include <LibCore/Object.h>
#include <LibGfx/Rect.h>
namespace Gfx {
diff --git a/Servers/WindowServer/main.cpp b/Servers/WindowServer/main.cpp
index e9187b7917..9e4b7748cb 100644
--- a/Servers/WindowServer/main.cpp
+++ b/Servers/WindowServer/main.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CConfigFile.h>
+#include <LibCore/ConfigFile.h>
#include <LibGfx/Palette.h>
#include <LibGfx/SystemTheme.h>
#include <WindowServer/WSCompositor.h>