From 75655286d3a35d53f8a57b7e8a7415d812afc945 Mon Sep 17 00:00:00 2001 From: Joshua Storost Date: Fri, 12 Jul 2024 21:21:32 +0200 Subject: [PATCH] revert to anObject --- source/GM-TE/GMTEBrush.class.st | 36 ++++++++++++------------- source/GM-TE/GMTEEditorTileMap.class.st | 24 ++++++++--------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/source/GM-TE/GMTEBrush.class.st b/source/GM-TE/GMTEBrush.class.st index 616c22cb..2ab1779e 100644 --- a/source/GM-TE/GMTEBrush.class.st +++ b/source/GM-TE/GMTEBrush.class.st @@ -51,11 +51,11 @@ GMTEBrush >> currentBrush [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:40' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> currentBrush: aBrush [ +GMTEBrush >> currentBrush: anObject [ - currentBrush := aBrush + currentBrush := anObject ] { @@ -69,11 +69,11 @@ GMTEBrush >> currentMatrixIndex [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:41' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> currentMatrixIndex: anIndex [ +GMTEBrush >> currentMatrixIndex: anObject [ - currentMatrixIndex := anIndex + currentMatrixIndex := anObject ] { @@ -137,11 +137,11 @@ GMTEBrush >> firstMatrixIndex [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:42' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> firstMatrixIndex: anIndex [ +GMTEBrush >> firstMatrixIndex: anObject [ - firstMatrixIndex := anIndex + firstMatrixIndex := anObject ] { @@ -165,11 +165,11 @@ GMTEBrush >> layer [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:42' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> layer: aLayer [ +GMTEBrush >> layer: anObject [ - layer := aLayer + layer := anObject ] { @@ -210,11 +210,11 @@ GMTEBrush >> outputSet [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:43' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> outputSet: aSet [ +GMTEBrush >> outputSet: anObject [ - outputSet := aSet + outputSet := anObject ] { @@ -228,11 +228,11 @@ GMTEBrush >> radius [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 13:43' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEBrush >> radius: aRadius [ +GMTEBrush >> radius: anObject [ - radius := aRadius + radius := anObject ] { diff --git a/source/GM-TE/GMTEEditorTileMap.class.st b/source/GM-TE/GMTEEditorTileMap.class.st index 4d45c4ba..adddc651 100644 --- a/source/GM-TE/GMTEEditorTileMap.class.st +++ b/source/GM-TE/GMTEEditorTileMap.class.st @@ -46,11 +46,11 @@ GMTEEditorTileMap >> currentTileChanges [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 14:18' + #'squeak_changestamp' : 'JS 7/12/2024 21:19' } -GMTEEditorTileMap >> currentTileChanges: aTileDictionary [ +GMTEEditorTileMap >> currentTileChanges: anObject [ - currentTileChanges := aTileDictionary + currentTileChanges := anObject ] { @@ -140,11 +140,11 @@ GMTEEditorTileMap >> model [ { #category : #accessing, - #'squeak_changestamp' : 'JS 7/12/2024 16:25' + #'squeak_changestamp' : 'JS 7/12/2024 21:19' } -GMTEEditorTileMap >> model: aModel [ +GMTEEditorTileMap >> model: anObject [ - model := aModel + model := anObject ] { @@ -250,11 +250,11 @@ GMTEEditorTileMap >> previousTileStates [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 14:18' + #'squeak_changestamp' : 'JS 7/12/2024 21:19' } -GMTEEditorTileMap >> previousTileStates: aTileDictionary [ +GMTEEditorTileMap >> previousTileStates: anObject [ - previousTileStates := aTileDictionary + previousTileStates := anObject ] { @@ -358,11 +358,11 @@ GMTEEditorTileMap >> tileSelectionSet [ { #category : #accessing, - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 14:16' + #'squeak_changestamp' : 'JS 7/12/2024 21:20' } -GMTEEditorTileMap >> tileSelectionSet: aSet [ +GMTEEditorTileMap >> tileSelectionSet: anObject [ - tileSelectionSet := aSet + tileSelectionSet := anObject ] {