Project.st
changeset 18735 681996ef7e51
parent 16629 ae20f5ef39b9
child 18738 66e019ad4d30
child 18872 224fa6bf65b1
--- a/Project.st	Fri Sep 04 14:38:55 2015 +0200
+++ b/Project.st	Sat Sep 05 12:09:45 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#Project
 	instanceVariableNames:'name changeSet views directoryName properties packageName
 		repositoryDirectory repositoryModule isLoaded'
@@ -837,7 +841,7 @@
 !
 
 addMethodChange:aMethod in:aClass
-    "add a method change in aClass to the receivers changeSet"
+    "add a method change in aClass to the receiver's changeSet"
 
     |changeSet|
 
@@ -1602,11 +1606,11 @@
 !Project class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Project.st,v 1.213 2014-06-25 08:00:02 stefan Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Project.st,v 1.213 2014-06-25 08:00:02 stefan Exp $'
+    ^ '$Header$'
 ! !