InputView.st
changeset 225 7c62c2ffb363
parent 130 ddb0e9c49fc8
child 235 236f3222fa88
--- a/InputView.st	Thu Apr 25 18:53:11 1996 +0200
+++ b/InputView.st	Thu Apr 25 19:15:11 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 SimpleView subclass:#InputView
-	 instanceVariableNames:'eventReceiver'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Views-Basic'
+	instanceVariableNames:'eventReceiver'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Views-Basic'
 !
 
 !InputView class methodsFor:'documentation'!
@@ -39,7 +39,10 @@
     This kind of view can be used to be laid ontop of another view to catch all
     input. (Interface builder)
     NOTICE: the event forwarding is a leftover from times when not delegation mechanism
-	    existed - it will vanish - use delegates for new code.
+            existed - it will vanish - use delegates for new code.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -158,5 +161,5 @@
 !InputView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/InputView.st,v 1.10 1995-11-24 17:22:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/InputView.st,v 1.11 1996-04-25 17:15:11 cg Exp $'
 ! !