diff -r 7162b6a896e6 -r af369740e2bc AbstractLauncherApplication.st --- a/AbstractLauncherApplication.st Tue Feb 18 09:08:56 2003 +0100 +++ b/AbstractLauncherApplication.st Tue Feb 18 14:40:09 2003 +0100 @@ -4121,7 +4121,7 @@ cvsIsSetup := false. ]. cvsIsSetup := cvsIsSetup asValue. - showErrorNotifier := (Exception emergencyHandler == AbstractLauncherApplication notifyingEmergencyHandler) asValue. + showErrorNotifier := (NoHandlerError emergencyHandler == AbstractLauncherApplication notifyingEmergencyHandler) asValue. showVerboseStack := (DebugView defaultVerboseBacktrace ? false) asValue. syntaxColoring := currentUserPrefs syntaxColoring asValue. fullSelectorCheck := currentUserPrefs fullSelectorCheck asValue. @@ -4325,9 +4325,9 @@ ]. showErrorNotifier value ifFalse:[ - Exception emergencyHandler:nil + NoHandlerError emergencyHandler:nil ] ifTrue:[ - Exception emergencyHandler:(AbstractLauncherApplication notifyingEmergencyHandler) + NoHandlerError emergencyHandler:(AbstractLauncherApplication notifyingEmergencyHandler) ]. DebugView defaultVerboseBacktrace:(showVerboseStack value). currentUserPrefs syntaxColoring:syntaxColoring value. @@ -6420,5 +6420,5 @@ !AbstractLauncherApplication class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.260 2003-02-13 11:20:36 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.261 2003-02-18 13:40:09 stefan Exp $' ! !