summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CrashWatcher.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-25 15:31:42 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-25 15:31:42 +0200
commitfacd7083bc1c5f097b7d6795780670644ccfbb1f (patch)
tree80b633429bd29dba7a49f8e37d57dfef96833654 /src/Daemon/CrashWatcher.cpp
parentfebce6de166c50a55eb0cba05cff385a9ca4a917 (diff)
downloadabrt-facd7083bc1c5f097b7d6795780670644ccfbb1f.tar.gz
abrt-facd7083bc1c5f097b7d6795780670644ccfbb1f.tar.xz
abrt-facd7083bc1c5f097b7d6795780670644ccfbb1f.zip
eliminate one-use class CDBusServer_adaptor
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/CrashWatcher.cpp')
-rw-r--r--src/Daemon/CrashWatcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp
index 5a6463a7..f0593c1c 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;