From facd7083bc1c5f097b7d6795780670644ccfbb1f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 25 Aug 2009 15:31:42 +0200 Subject: eliminate one-use class CDBusServer_adaptor Signed-off-by: Denys Vlasenko --- src/Daemon/CrashWatcher.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Daemon/CrashWatcher.cpp') diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp index 5a6463a..f0593c1 100644 --- a/src/Daemon/CrashWatcher.cpp +++ b/src/Daemon/CrashWatcher.cpp @@ -30,14 +30,14 @@ void CCrashWatcher::Status(const std::string& pMessage, const std::string& pDest g_pCommLayer->Update(pDest, pMessage); } -void CCrashWatcher::Warning(const std::string& pMessage, const std::string& pDest) +void CCrashWatcher::Warning(const std::string& pMessage) { std::cerr << "Warning: " + pMessage << std::endl; if (g_pCommLayer != NULL) - g_pCommLayer->Warning(pDest, pMessage); + g_pCommLayer->Warning(pMessage); } -void CCrashWatcher::Debug(const std::string& pMessage, const std::string& pDest) +void CCrashWatcher::Debug(const std::string& pMessage) { //some logic to add logging levels? std::cout << "Debug: " + pMessage << std::endl; -- cgit