Browse Source

createPackage: with only one parameter at the beginning of .st

Recompile will fix `.js` files as well
(the existing parameter in `.js` does not make any harm,
but should be removed, eventually).
Herbert Vojčík 11 years ago
parent
commit
05adaecfa9

+ 1 - 1
presentation/st/Presentation.st

@@ -1,4 +1,4 @@
-Smalltalk current createPackage: 'Presentation' properties: #{}!
+Smalltalk current createPackage: 'Presentation'!
 Widget subclass: #Presentation
 	instanceVariableNames: 'currentSlide slides'
 	package: 'Presentation'!

+ 1 - 1
processing/st/Processing-Examples.st

@@ -1,4 +1,4 @@
-Smalltalk current createPackage: 'Processing-Examples' properties: #{}!
+Smalltalk current createPackage: 'Processing-Examples'!
 Object subclass: #ProcessingClock
 	instanceVariableNames: 'processing centerX centerY maxArmLength'
 	package: 'Processing-Examples'!

+ 1 - 1
trysmalltalk/st/TrySmalltalk.st

@@ -1,4 +1,4 @@
-Smalltalk current createPackage: 'TrySmalltalk' properties: #{}!
+Smalltalk current createPackage: 'TrySmalltalk'!
 Object subclass: #AbstractTutorial
 	instanceVariableNames: ''
 	package: 'TrySmalltalk'!

+ 1 - 1
twitterwall/st/TwitterWall.st

@@ -1,4 +1,4 @@
-Smalltalk current createPackage: 'TwitterWall' properties: #{}!
+Smalltalk current createPackage: 'TwitterWall'!
 Widget subclass: #Tweet
 	instanceVariableNames: 'json'
 	category: 'TwitterWall'!