diff options
Diffstat (limited to 'lib/CommLayer/DBusServerProxy.h')
| -rw-r--r-- | lib/CommLayer/DBusServerProxy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CommLayer/DBusServerProxy.h b/lib/CommLayer/DBusServerProxy.h index b55172b..1b8159b 100644 --- a/lib/CommLayer/DBusServerProxy.h +++ b/lib/CommLayer/DBusServerProxy.h @@ -118,10 +118,11 @@ public: } - void JobDone(uint64_t job_id) + void JobDone(const std::string &pDest, uint64_t job_id) { ::DBus::SignalMessage sig("JobDone"); ::DBus::MessageIter wi = sig.writer(); + wi << pDest; wi << job_id; emit_signal(sig); } |
