From: Manuel Nickschas Date: Tue, 28 Sep 2010 19:38:46 +0000 (+0200) Subject: Move EventStringifier from common/ to core/ for now X-Git-Tag: 0.8-beta1~110 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=f9c4ee168a794add5261a7f1b6abb518f5987f8c;hp=3eebe11329417e77038d860af3b6f35630f40450 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. --- 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