diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-06 15:04:03 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 15:04:03 +0100 |
commit | d17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf (patch) | |
tree | 6c5ed42a008c6d74e427909eaed8e52182e0f7eb /Meta/Lagom | |
parent | 7415e6ef9fbd1529cd13db315ccda25c52f56105 (diff) | |
download | serenity-d17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf.zip |
LibCore: Remove leading C from filenames
Diffstat (limited to 'Meta/Lagom')
-rw-r--r-- | Meta/Lagom/SimpleIPCClient.cpp | 6 | ||||
-rw-r--r-- | Meta/Lagom/SimpleIPCServer.cpp | 8 | ||||
-rw-r--r-- | Meta/Lagom/TestApp.cpp | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/Meta/Lagom/SimpleIPCClient.cpp b/Meta/Lagom/SimpleIPCClient.cpp index 8993cee63f..f091e19bfd 100644 --- a/Meta/Lagom/SimpleIPCClient.cpp +++ b/Meta/Lagom/SimpleIPCClient.cpp @@ -24,9 +24,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <LibCore/CEventLoop.h> -#include <LibCore/CTimer.h> -#include <LibCore/CoreIPCClient.h> +#include <LibCore/EventLoop.h> +#include <LibCore/Timer.h> +#include <LibCore/oreIPCClient.h> #include <stdio.h> #include "SimpleEndpoint.h" diff --git a/Meta/Lagom/SimpleIPCServer.cpp b/Meta/Lagom/SimpleIPCServer.cpp index c200f99a69..616e262741 100644 --- a/Meta/Lagom/SimpleIPCServer.cpp +++ b/Meta/Lagom/SimpleIPCServer.cpp @@ -24,10 +24,10 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <LibCore/CEventLoop.h> -#include <LibCore/CTimer.h> -#include <LibCore/CoreIPCServer.h> -#include <LibCore/CLocalServer.h> +#include <LibCore/EventLoop.h> +#include <LibCore/Timer.h> +#include <LibCore/oreIPCServer.h> +#include <LibCore/LocalServer.h> #include <stdio.h> #include "SimpleEndpoint.h" diff --git a/Meta/Lagom/TestApp.cpp b/Meta/Lagom/TestApp.cpp index 82b06450c4..b212ecf7e3 100644 --- a/Meta/Lagom/TestApp.cpp +++ b/Meta/Lagom/TestApp.cpp @@ -24,8 +24,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <LibCore/CEventLoop.h> -#include <LibCore/CTimer.h> +#include <LibCore/EventLoop.h> +#include <LibCore/Timer.h> #include <stdio.h> int main(int, char**) |