summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CommLayerServerDBus.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-07 17:02:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-07 17:02:29 +0200
commitcaef0b615fc0cc11de65fae634bd9674b0c634d2 (patch)
treeaced58c1e779a6678e67a227d14440f38983922c /src/Daemon/CommLayerServerDBus.h
parentbb46fd1f7466df6a7f0c45ad50c661a36fec0caf (diff)
downloadabrt-caef0b615fc0cc11de65fae634bd9674b0c634d2.tar.gz
abrt-caef0b615fc0cc11de65fae634bd9674b0c634d2.tar.xz
abrt-caef0b615fc0cc11de65fae634bd9674b0c634d2.zip
correct g_pending_jobs' type; eliminate redundant string passing
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/CommLayerServerDBus.h')
-rw-r--r--src/Daemon/CommLayerServerDBus.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Daemon/CommLayerServerDBus.h b/src/Daemon/CommLayerServerDBus.h
index fffdd783..6ac702d0 100644
--- a/src/Daemon/CommLayerServerDBus.h
+++ b/src/Daemon/CommLayerServerDBus.h
@@ -16,8 +16,8 @@ class CCommLayerServerDBus
virtual void Error(const std::string& arg1);
virtual void Update(const std::string& pMessage, uint64_t pJobID);
//the job id should be enough in jobdone
- virtual void JobDone(const std::string& pDest, uint64_t pJobID);
- virtual void JobStarted(const std::string& pDest, uint64_t pJobID);
+ virtual void JobDone(const char* pDest, uint64_t pJobID);
+ virtual void JobStarted(const char* pDest, uint64_t pJobID);
virtual void Warning(const std::string& pMessage);
virtual void Warning(const std::string& pMessage, uint64_t pJobID);
};