ActiveHelp.st
changeset 1713 bc8a1d16e60f
parent 1657 447db4aae998
child 1768 7011c938442e
--- a/ActiveHelp.st	Sun Mar 02 19:46:02 2003 +0100
+++ b/ActiveHelp.st	Sun Mar 02 21:42:37 2003 +0100
@@ -510,7 +510,7 @@
     "handle motion events - if the mousepointer left the 
      previous helped view, hide the help"
 
-    Object errorSignal handle:[:ex |
+    Error handle:[:ex |
         ex description infoPrintCR.
         ex suspendedContext fullPrintAll.
         ex return
@@ -530,7 +530,7 @@
 hideHelpIgnoringErrors
     "hide the help text"
 
-    Object errorSignal handle:[:ex |
+    Error handle:[:ex |
         ex description infoPrintCR.
         ex return
     ] do:[
@@ -644,7 +644,7 @@
 !ActiveHelp class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.48 2002-10-29 11:41:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.49 2003-03-02 20:42:37 stefan Exp $'
 ! !
 
 ActiveHelp initialize!