UIObjectView.st
changeset 55 19e021c8f1ef
parent 54 d0b5a33e6df0
child 58 668eb9eae2ac
--- a/UIObjectView.st	Mon Feb 17 18:23:19 1997 +0100
+++ b/UIObjectView.st	Tue Feb 18 11:38:57 1997 +0100
@@ -1289,72 +1289,24 @@
 
 !
 
-moveSelectionDown
-    self moveSelectionDown:1
-
-
-!
-
-moveSelectionDown10
-    self moveSelectionDown:10
-
-
-!
-
 moveSelectionDown:n
     self basicMoveSelectionVertical:n
 
 
 !
 
-moveSelectionLeft
-    self moveSelectionLeft:1
-
-
-!
-
-moveSelectionLeft10
-    self moveSelectionLeft:10
-
-
-!
-
 moveSelectionLeft:n
     self basicMoveSelectionHorizontal:(n negated)
 
 
 !
 
-moveSelectionRight
-    self moveSelectionRight:1
-
-
-!
-
-moveSelectionRight10
-    self moveSelectionRight:10
-
-
-!
-
 moveSelectionRight:n
     self basicMoveSelectionHorizontal:n
 
 
 !
 
-moveSelectionUp
-    self moveSelectionUp:1
-
-
-!
-
-moveSelectionUp10
-    self moveSelectionUp:10
-
-
-!
-
 moveSelectionUp:n
     self basicMoveSelectionVertical:(n negated)