Object.st
changeset 24834 f67a0e9f14d1
parent 24817 8c5a036c4d3b
child 24851 1a6831daac04
--- a/Object.st	Tue Oct 15 01:11:00 2019 +0200
+++ b/Object.st	Tue Oct 15 15:15:52 2019 +0200
@@ -8611,9 +8611,11 @@
     "try to send the receiver the message, aSelector.
      If it does not understand it, return false.
      Otherwise the real value returned.
-     Useful to send messages such as: #isXXX: to unknown receivers."
+     Useful to send messages such as: #handlesPointerLeave:inView: to unknown receivers."
 
     ^ self perform:aSelector with:arg1 with:arg2 ifNotUnderstood:[false]
+
+    "Modified (comment): / 15-10-2019 / 14:49:33 / Stefan Vogel"
 !
 
 perform:aSelector ifNotUnderstood:exceptionBlock