diff options
Diffstat (limited to 'src/Gui')
| -rw-r--r-- | src/Gui/CCMainWindow.py | 3 | ||||
| -rw-r--r-- | src/Gui/CCReporterDialog.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index 7f2cb7c..02f2a03 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -24,7 +24,8 @@ class MainWindow(): gui_error_message(e.message) sys.exit() #Set the Glade file - self.gladefile = "ccgui.glade" + # FIXME add to PATH + self.gladefile = "../share/crash-catcher/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 f10388c..fa6e242 100644 --- a/src/Gui/CCReporterDialog.py +++ b/src/Gui/CCReporterDialog.py @@ -11,7 +11,8 @@ class ReporterDialog(): def __init__(self, dump): self.dump = dump #Set the Glade file - self.gladefile = "ccgui.glade" + # FIXME add to path + self.gladefile = "../share/crash-catcher/ccgui.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") |
