diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-07 12:37:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-07 12:37:45 +0100 |
commit | 6b36135970dd9ba4694e626e3fbd8166c64d8cdc (patch) | |
tree | 09468c7403bdd77ceddb02ac3571e83a6a504406 /src/Gui/CCMainWindow.py | |
parent | 9fa0918b822b4d81a8adf7392c4e18e87d351872 (diff) | |
download | abrt-6b36135970dd9ba4694e626e3fbd8166c64d8cdc.tar.gz abrt-6b36135970dd9ba4694e626e3fbd8166c64d8cdc.tar.xz abrt-6b36135970dd9ba4694e626e3fbd8166c64d8cdc.zip |
ccpp: add a possibility to disable backtrace generation
+ assorted minor tweaks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui/CCMainWindow.py')
-rw-r--r-- | src/Gui/CCMainWindow.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index db1f7279..77ce3d3a 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -114,6 +114,8 @@ class MainWindow(): self.ccdaemon.connect("analyze-complete", self.on_analyze_complete_cb, self.pBarWindow) self.ccdaemon.connect("abrt-error", self.error_cb) self.ccdaemon.connect("update", self.update_cb) + # for now, just treat them the same (w/o this, we don't even see daemon warnings in logs!): + self.ccdaemon.connect("warning", self.update_cb) self.ccdaemon.connect("show", self.show_cb) self.ccdaemon.connect("daemon-state-changed", self.on_daemon_state_changed_cb) self.ccdaemon.connect("report-done", self.on_report_done_cb) |