# HG changeset patch # User Claus Gittinger # Date 1121420108 -7200 # Node ID f5e8dfe308387d117576ea30a65b5fcf9db12d4a # Parent 53832fa044f1920578e14c94dc2b3bf8b96eea1c *** empty log message *** diff -r 53832fa044f1 -r f5e8dfe30838 UIObjectView.st --- a/UIObjectView.st Fri Jul 15 11:34:54 2005 +0200 +++ b/UIObjectView.st Fri Jul 15 11:35:08 2005 +0200 @@ -433,8 +433,8 @@ ! resetModification - "set modification state to false - " + "set modification state to false" + undoHistory resetModification ! @@ -1515,15 +1515,15 @@ ! hasUndoHistory - "returns true if undos exists - " + "returns true if undos exists" + ^ undoHistory isEmpty not ! isModified - "returns true if painter is modified - " - ^ undoHistory isModified + "returns true if painter is modified" + + ^ undoHistory isModified ! isSelected:anObject @@ -2487,7 +2487,6 @@ identifier := startIdentifier := 0. history := OrderedCollection new. - ! ! !UIObjectView::UndoHistory methodsFor:'activation & deactivation'!