SimpleView.st
changeset 7014 c6314e2eacb8
parent 7011 64461ec3691e
child 7023 91423b65ebce
--- a/SimpleView.st	Thu Oct 08 19:55:57 2015 +0200
+++ b/SimpleView.st	Fri Oct 09 14:14:44 2015 +0200
@@ -3926,19 +3926,19 @@
 !SimpleView methodsFor:'accessing-misc'!
 
 bitGravity
-    "return the bitGravity - thats the direction where the contents will move
+    "return the bitGravity - that's the direction where the contents will move
      when the the view is resized."
 
     ^ bitGravity
 !
 
 bitGravity:gravity
-    "set the bitGravity - thats the direction where the contents will move
+    "set the bitGravity - that's the direction where the contents will move
      when the view is resized."
 
     bitGravity ~~ gravity ifTrue:[
-	bitGravity := gravity.
-	super bitGravity:gravity.
+        bitGravity := gravity.
+        super bitGravity:gravity.
     ]
 !
 
@@ -4076,19 +4076,19 @@
 !
 
 viewGravity
-    "return the viewGravity - thats the direction where the view will move
+    "return the viewGravity - that's the direction where the view will move
      when the superView is resized."
 
     ^ viewGravity
 !
 
 viewGravity:gravity
-    "set the viewGravity - thats the direction where the view will move
+    "set the viewGravity - that's the direction where the view will move
      when the superView is resized."
 
     viewGravity ~~ gravity ifTrue:[
-	viewGravity := gravity.
-	super viewGravity:gravity.
+        viewGravity := gravity.
+        super viewGravity:gravity.
     ]
 ! !