summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-08 13:16:06 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-08 13:16:06 +0200
commita4257108013f15653724b5ed3b3c208e071567c5 (patch)
tree456d43971be209e777fce616ac149d0032c90452 /src/Gui
parent5d2fb8bf5ebdf814259a01c6e429311334d2eabc (diff)
downloadabrt-a4257108013f15653724b5ed3b3c208e071567c5.tar.gz
abrt-a4257108013f15653724b5ed3b3c208e071567c5.tar.xz
abrt-a4257108013f15653724b5ed3b3c208e071567c5.zip
abrtd: eliminate g_pending_jobs[] map and all corresponding TODOs :)
-6k: text data bss dec hexfilename 194741 2656 2384 199781 30c65abrt.t1/abrt-0.0.8.5/src/Daemon/.libs/abrtd 188316 2648 2320 193284 2f304abrt.t2/abrt-0.0.8.5/src/Daemon/.libs/abrtd Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/CCDBusBackend.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Gui/CCDBusBackend.py b/src/Gui/CCDBusBackend.py
index 8e09f6d1..01e51962 100644
--- a/src/Gui/CCDBusBackend.py
+++ b/src/Gui/CCDBusBackend.py
@@ -149,6 +149,7 @@ class DBusManager(gobject.GObject):
# new crash notify
self.proxy.connect_to_signal("Crash",self.crash_cb,dbus_interface=CC_IFACE)
# BT extracting complete
+#TODO: remove, abrtd does not emit AnalyzeComplete
self.acconnection = self.proxy.connect_to_signal("AnalyzeComplete",self.analyze_complete_cb,dbus_interface=CC_IFACE)
# Catch Errors
self.acconnection = self.proxy.connect_to_signal("Error",self.error_handler_cb,dbus_interface=CC_IFACE)
@@ -173,7 +174,7 @@ class DBusManager(gobject.GObject):
def jobdone_cb(self, dest, uuid):
if self.uniq_name == dest:
- print "Our job: %s is done." % uuid
+ print "Our job for UUID %s is done." % uuid
dump = self.cc.GetJobResult(uuid)
if dump:
self.emit("analyze-complete", dump)