*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 15 Jul 2005 11:35:08 +0200
changeset 1918 f5e8dfe30838
parent 1917 53832fa044f1
child 1919 7471cdbd3205
*** empty log message ***
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'!