summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-03-04 11:26:36 +0100
committerZdenek Prikryl <zprikryl@redhat.com>2009-03-04 11:26:36 +0100
commit8e0b0f53b0cc139c45619472177ddbf8e616a947 (patch)
tree0d4361ab6155b8b788c813a3169a8cd2ea1dc6c6 /src/Gui
parentd302872fa0e5ed605d07a46414407e70f3253a58 (diff)
downloadabrt-8e0b0f53b0cc139c45619472177ddbf8e616a947.tar.gz
abrt-8e0b0f53b0cc139c45619472177ddbf8e616a947.tar.xz
abrt-8e0b0f53b0cc139c45619472177ddbf8e616a947.zip
replace old project name by new one
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/CCDBusBackend.py6
-rw-r--r--src/Gui/CCMainWindow.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Gui/CCDBusBackend.py b/src/Gui/CCDBusBackend.py
index 7d9f0c4..0cc26d5 100644
--- a/src/Gui/CCDBusBackend.py
+++ b/src/Gui/CCDBusBackend.py
@@ -3,8 +3,8 @@ import gobject
from dbus.mainloop.glib import DBusGMainLoop
import gtk
-CC_IFACE = 'com.redhat.crash_catcher'
-CC_PATH = '/com/redhat/crash_catcher'
+CC_IFACE = 'com.redhat.abrt'
+CC_PATH = '/com/redhat/abrt'
class DBusManager(gobject.GObject):
@@ -60,7 +60,7 @@ class DBusManager(gobject.GObject):
try:
self.proxy = bus.get_object(CC_IFACE, CC_PATH)
except Exception, e:
- raise Exception(e.message + "\nPlease check if crash-catcher daemon is running.")
+ raise Exception(e.message + "\nPlease check if abrt daemon is running.")
def getReport(self, UUID):
try:
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index 0aad71f..542bc9f 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -86,7 +86,7 @@ class MainWindow():
try:
dumplist = getDumpList(self.ccdaemon, refresh=True)
except Exception, e:
- gui_error_message("Error while loading the dumplist, please check if crash-catcher daemon is running\n %s" % e.message)
+ gui_error_message("Error while loading the dumplist, please check if abrt daemon is running\n %s" % e.message)
for entry in dumplist:
try:
icon = get_icon_for_package(self.theme,entry.getPackageName())