diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-27 13:13:15 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-27 13:13:15 +0200 |
| commit | bc17e32391578ee0128fe73719d1f691613d18fe (patch) | |
| tree | 69c268cf7cbc8c91bb75e87d93d4d1aa8cf43879 /src/Daemon/CommLayerServerDBus.h | |
| parent | caf38bbfe3279b9bea861e4d5b70f3c50c6e1755 (diff) | |
| download | abrt-bc17e32391578ee0128fe73719d1f691613d18fe.tar.gz abrt-bc17e32391578ee0128fe73719d1f691613d18fe.tar.xz abrt-bc17e32391578ee0128fe73719d1f691613d18fe.zip | |
don't encode the job id into message string, send it as an separate argument
Diffstat (limited to 'src/Daemon/CommLayerServerDBus.h')
| -rw-r--r-- | src/Daemon/CommLayerServerDBus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Daemon/CommLayerServerDBus.h b/src/Daemon/CommLayerServerDBus.h index 38450aa..a3b54a7 100644 --- a/src/Daemon/CommLayerServerDBus.h +++ b/src/Daemon/CommLayerServerDBus.h @@ -37,9 +37,10 @@ class CCommLayerServerDBus virtual void Crash(const std::string& progname, const std::string& uid); virtual void AnalyzeComplete(const map_crash_report_t& arg1); virtual void Error(const std::string& arg1); - virtual void Update(const std::string& pDest, const std::string& pMessage); + virtual void Update(const std::string& pMessage, uint64_t pJobID); virtual void JobDone(const std::string& pDest, uint64_t pJobID); virtual void Warning(const std::string& pMessage); + virtual void Warning(const std::string& pMessage, uint64_t pJobID); }; /* |
