# HG changeset patch # User Claus Gittinger # Date 1567947595 -7200 # Node ID 7fad458b3706fa270f60c81d14eca24b5b43565a # Parent e4364fb2e320d158518e3a0a52a076fde56ca803 #TUNING by exept class: UIObjectView::UndoHistory changed: #labelOfLastUndo (send #== instead of #=) diff -r e4364fb2e320 -r 7fad458b3706 UIObjectView.st --- a/UIObjectView.st Sun Sep 08 14:59:41 2019 +0200 +++ b/UIObjectView.st Sun Sep 08 14:59:55 2019 +0200 @@ -3127,7 +3127,7 @@ labelOfLastUndo "return astring describing the last undo-action (for the menu)" - history size = 0 ifTrue:[^ '* nothing to undo *']. + history size == 0 ifTrue:[^ '* nothing to undo *']. ^ history last "actions" type "Created: / 30.10.2001 / 13:45:28 / cg"