From f9c4ee168a794add5261a7f1b6abb518f5987f8c Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Tue, 28 Sep 2010 21:38:46 +0200 Subject: [PATCH] Move EventStringifier from common/ to core/ for now We need a way to access the EventManager, which currently works through CoreSession. Once the stringifier moves into client, we'll use Client instead. Nothing else depends on core. --- src/common/CMakeLists.txt | 2 -- src/core/CMakeLists.txt | 2 ++ src/{common => core}/eventstringifier.cpp | 0 src/{common => core}/eventstringifier.h | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/{common => core}/eventstringifier.cpp (100%) rename src/{common => core}/eventstringifier.h (100%) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index e79337aa..eb485549 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -14,7 +14,6 @@ set(SOURCES cliparser.cpp event.cpp eventmanager.cpp - eventstringifier.cpp identity.cpp ignorelistmanager.cpp ircchannel.cpp @@ -42,7 +41,6 @@ set(MOC_HDRS bufferviewmanager.h coreinfo.h eventmanager.h - eventstringifier.h identity.h ignorelistmanager.h ircchannel.h diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index f1f7e50d..de1b6fb4 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -30,6 +30,7 @@ set(SOURCES coreuserinputhandler.cpp coreusersettings.cpp ctcphandler.cpp + eventstringifier.cpp ircparser.cpp ircserverhandler.cpp netsplit.cpp @@ -60,6 +61,7 @@ set(MOC_HDRS coresessioneventprocessor.h coreuserinputhandler.h ctcphandler.h + eventstringifier.h ircparser.h ircserverhandler.h netsplit.h diff --git a/src/common/eventstringifier.cpp b/src/core/eventstringifier.cpp similarity index 100% rename from src/common/eventstringifier.cpp rename to src/core/eventstringifier.cpp diff --git a/src/common/eventstringifier.h b/src/core/eventstringifier.h similarity index 100% rename from src/common/eventstringifier.h rename to src/core/eventstringifier.h -- 2.20.1