summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-03-03 21:04:08 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2009-03-03 21:04:08 +0100
commit0a5b87ab4dae3ec4b47a47d505f89fc3e3e3055f (patch)
tree560f589061acce46928ea03ae6602364002423ee /src/Gui
parent820832e32b5ee5f422261575fc332e038ad94e73 (diff)
downloadabrt-0a5b87ab4dae3ec4b47a47d505f89fc3e3e3055f.tar.gz
abrt-0a5b87ab4dae3ec4b47a47d505f89fc3e3e3055f.tar.xz
abrt-0a5b87ab4dae3ec4b47a47d505f89fc3e3e3055f.zip
Rename to abrt
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/CCMainWindow.py2
-rw-r--r--src/Gui/CCReporterDialog.py2
-rw-r--r--src/Gui/Makefile.am4
-rw-r--r--src/Gui/abrt-gui4
-rw-r--r--src/Gui/abrt.desktop (renamed from src/Gui/crash-catcher.desktop)6
-rw-r--r--src/Gui/cc-gui4
6 files changed, 11 insertions, 11 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index b622b9d0..0aad71f9 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -29,7 +29,7 @@ class MainWindow():
sys.exit()
#Set the Glade file
# FIXME add to PATH
- self.gladefile = "/usr/share/crash-catcher/ccgui.glade"
+ self.gladefile = "/usr/share/abrt/ccgui.glade"
self.wTree = gtk.glade.XML(self.gladefile)
#Get the Main Window, and connect the "destroy" event
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index cd55daf8..cfe11c1f 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -13,7 +13,7 @@ class ReporterDialog():
self.report = report
#Set the Glade file
# FIXME add to path
- self.gladefile = "/usr/share/crash-catcher/report.glade"
+ self.gladefile = "/usr/share/abrt/report.glade"
self.wTree = gtk.glade.XML(self.gladefile)
#Get the Main Window, and connect the "destroy" event
self.window = self.wTree.get_widget("reporter_dialog")
diff --git a/src/Gui/Makefile.am b/src/Gui/Makefile.am
index 4162dcfc..21a4423e 100644
--- a/src/Gui/Makefile.am
+++ b/src/Gui/Makefile.am
@@ -1,12 +1,12 @@
#SUBDIRS=gui tui plugins tests conf
-bin_SCRIPTS = cc-gui
+bin_SCRIPTS = abrt-gui
PYTHON_FILES = CCDBusBackend.py CCDumpList.py CCDump.py CC_gui_functions.py ccgui.glade report.glade CCReporterDialog.py CCReport.py CCMainWindow.py exception.py
GLADE_FILES = ccgui.glade report.glade
-EXTRA_DIST = $(PYTHON_FILES) $(GLADE_FILES) cc-gui crash-catcher.desktop
+EXTRA_DIST = $(PYTHON_FILES) $(GLADE_FILES) abrt-gui abrt.desktop
#ccguidir = $(pkgdatadir)
pkgdata_PYTHON = $(PYTHON_FILES)
diff --git a/src/Gui/abrt-gui b/src/Gui/abrt-gui
new file mode 100644
index 00000000..dd0897c0
--- /dev/null
+++ b/src/Gui/abrt-gui
@@ -0,0 +1,4 @@
+#! /bin/sh
+export PYTHONPATH=/usr/share/abrt
+export XLOGNAME=$LOGNAME
+exec /usr/bin/python /usr/share/abrt/CCMainWindow.py "$@"
diff --git a/src/Gui/crash-catcher.desktop b/src/Gui/abrt.desktop
index 37db7ae8..bf3df449 100644
--- a/src/Gui/crash-catcher.desktop
+++ b/src/Gui/abrt.desktop
@@ -1,9 +1,9 @@
[Desktop Entry]
Encoding=UTF-8
-Name=CrashCatcher
-Comment=Gui for crash-catcher
-Exec=cc-gui
+Name=Automatic Bug Reporting Tool
+Comment=Gui for abrt
+Exec=abrt-gui
Icon=
Terminal=false
Type=Application
diff --git a/src/Gui/cc-gui b/src/Gui/cc-gui
deleted file mode 100644
index cd6339f4..00000000
--- a/src/Gui/cc-gui
+++ /dev/null
@@ -1,4 +0,0 @@
-#! /bin/sh
-export PYTHONPATH=/usr/share/crash-catcher
-export XLOGNAME=$LOGNAME
-exec /usr/bin/python /usr/share/crash-catcher/CCMainWindow.py "$@"