def fatalError(self, error, wrap=1):
     # FIXME
     if wrap:
         text = messageWindow.wrap_text(error)
     else:
         text = error
     dlg = messageWindow.ErrorDialog(text)
     self._goImmediatelyToFinish()
Esempio n. 2
0
    def fatalError(self, error, wrap=1):
        rhnregGui.setArrowCursor()
        # FIXME
        if wrap:
            text = messageWindow.wrap_text(error)
        else:
            text = error

        dlg = messageWindow.ErrorDialog(text, self.mainWin)
        gtk.main_quit()
        sys.exit(1)
Esempio n. 3
0
    def fatalError(self, error, wrap=1):
        rhnregGui.setArrowCursor()
        # FIXME
        if wrap:
            text = messageWindow.wrap_text(error)
        else:
            text = error

        dlg = messageWindow.ErrorDialog(text,self.mainWin)
        gtk.main_quit()
        sys.exit(1)
Esempio n. 4
0
def errorWindow(msg):
    dlg = messageWindow.ErrorDialog(messageWindow.wrap_text(msg))
Esempio n. 5
0
def errorWindow(msg):
    dlg = messageWindow.ErrorDialog(messageWindow.wrap_text(msg))