summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Daemon.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-08 17:16:49 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-08 17:16:49 +0200
commitc02dc38e2f27542a78500b5a04ec787495b8f0f1 (patch)
tree4b568838e0585b494e2df6401365c06c79c6595f /src/Daemon/Daemon.cpp
parentff2627e7c597e50025ca4d91ff8168eec80f9054 (diff)
downloadabrt-c02dc38e2f27542a78500b5a04ec787495b8f0f1.tar.gz
abrt-c02dc38e2f27542a78500b5a04ec787495b8f0f1.tar.xz
abrt-c02dc38e2f27542a78500b5a04ec787495b8f0f1.zip
remove unused Error() methods and dbus signals.
I guess it turned out Warning() works just fine. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/Daemon.cpp')
-rw-r--r--src/Daemon/Daemon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp
index a7c9737..28a6c8a 100644
--- a/src/Daemon/Daemon.cpp
+++ b/src/Daemon/Daemon.cpp
@@ -75,12 +75,12 @@
* Sent as unicast to the client which did CreateReport.
* - JobDone(client_dbus_ID,UUID) - see CreateReport above.
* Sent as unicast to the client which did CreateReport.
- * - Error(msg)
- * - Warning(msg[,job_id])
+ * - Warning(msg,job_id)
* - Update(msg,job_id)
+ * Both are sent as unicast to last client set by set_client_name(name).
+ * If set_client_name(NULL) was done, they are not sent.
*
* TODO:
- * - Error/Warning/Update dbus signals must be unicast too
* - API does not really need JobStarted dbus signal at all, and JobDone signal
* does not need to pass any parameters - out clients never sent multiple
* CreateReport's.