Browse Source

Merge pull request #10 from herby/gh-384

createPackage: with only one parameter at the beginning of .st
Nicolas Petton 12 years ago
parent
commit
5b97d459f1

+ 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'!