ApplicationModel.st
changeset 330 d7ce98930ad3
parent 313 09c2e83252f4
child 361 765fe20a26d1
--- a/ApplicationModel.st	Thu Sep 05 17:37:54 1996 +0200
+++ b/ApplicationModel.st	Tue Sep 10 00:58:38 1996 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+'From Smalltalk/X, Version:2.10.9 on 9-sep-1996 at 22:51:41'                    !
+
 Model subclass:#ApplicationModel
 	instanceVariableNames:'builder resources device'
 	classVariableNames:''
@@ -55,7 +57,7 @@
      for them)
 
     As time goes by, ST/X applications are going to be converted to
-    become subclasses of this abstract class - see NewLauncher for a
+    become subclasses of this abstract class - see Launcher for a
     first concrete example.
 
 
@@ -536,11 +538,12 @@
 
      Subclasses which do not have an interfaceSpec 
      should redefine this method and create & open their view(s) there.
-     (see NewLauncher as an example)."
+     (see Launcher as an example)."
 
     self openInterface:#windowSpec
 
     "Modified: 24.4.1996 / 09:35:43 / cg"
+    "Modified: 9.9.1996 / 22:39:23 / stefan"
 !
 
 openInterface:aSymbol
@@ -632,6 +635,6 @@
 !ApplicationModel  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.29 1996-07-05 16:00:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.30 1996-09-09 22:58:38 stefan Exp $'
 ! !
 ApplicationModel initialize!