diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-25 15:31:42 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-25 15:31:42 +0200 |
commit | facd7083bc1c5f097b7d6795780670644ccfbb1f (patch) | |
tree | 80b633429bd29dba7a49f8e37d57dfef96833654 /lib | |
parent | febce6de166c50a55eb0cba05cff385a9ca4a917 (diff) | |
download | abrt-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 'lib')
-rw-r--r-- | lib/CommLayer/Observer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CommLayer/Observer.h b/lib/CommLayer/Observer.h index 755ae524..1fb820a2 100644 --- a/lib/CommLayer/Observer.h +++ b/lib/CommLayer/Observer.h @@ -12,8 +12,8 @@ class CObserver { //CObserver(); virtual ~CObserver() {} virtual void Status(const std::string& pMessage, const std::string& pDest="0") = 0; - virtual void Debug(const std::string& pMessage, const std::string& pDest="0") = 0; - virtual void Warning(const std::string& pMessage, const std::string& pDest="0") = 0; + virtual void Debug(const std::string& pMessage) = 0; + virtual void Warning(const std::string& pMessage) = 0; /* this should be implemented in daemon */ virtual vector_crash_infos_t GetCrashInfos(const std::string &pSender) = 0; virtual uint64_t CreateReport_t(const std::string &pUUID,const std::string &pUID, const std::string &pSender) |