File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
repository/MatplotLibBridge.package
MLBCommand.class/instance
MLBScatterPlot2.class/instance Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
accessing
2
2
mlbAttributeAccessors
3
- ^ (Pragma allNamed: #mlbAttribute in: self class ) collect: #selector
3
+ ^ (Pragma allNamed: #mlbAttribute in: self class ) collect: #methodSelector
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ mlbPositionalAttributes
3
3
^ (((Pragma allNamed: #mlbAttribute: in: self class )
4
4
select: [ :p | (p methodSelector value: self ) isNotNil ]
5
5
thenCollect: [ :p | (p methodSelector value: self ) - > p arguments first ])
6
- sorted: [ :a :b | a tail < b tail ]) collect: #head
6
+ sorted: [ :a :b | a value < b value ]) collect: #key
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ building
2
2
inBuild
3
3
((self data groupedBy: #marker ) associations
4
4
sorted: [ :a :b |
5
- (self markersOrder indexOf: a head ) < (self markersOrder indexOf: b head ) ])
5
+ (self markersOrder indexOf: a key ) < (self markersOrder indexOf: b key ) ])
6
6
do: [ :assoc |
7
7
|marker scatterData |
8
- marker := assoc head .
9
- scatterData := assoc tail .
8
+ marker := assoc key .
9
+ scatterData := assoc value .
10
10
self commandList
11
11
add:
12
12
(MLBScatterCommand new
Original file line number Diff line number Diff line change 1
1
SystemOrganization addCategory: #MatplotLibBridge !
2
- SystemOrganization addCategory: ' MatplotLibBridge-API' !
3
- SystemOrganization addCategory: ' MatplotLibBridge-Commands' !
4
- SystemOrganization addCategory: ' MatplotLibBridge-Core' !
5
- SystemOrganization addCategory: ' MatplotLibBridge-Errors' !
6
- SystemOrganization addCategory: ' MatplotLibBridge-Examples' !
2
+ SystemOrganization addCategory: # ' MatplotLibBridge-API' !
3
+ SystemOrganization addCategory: # ' MatplotLibBridge-Commands' !
4
+ SystemOrganization addCategory: # ' MatplotLibBridge-Core' !
5
+ SystemOrganization addCategory: # ' MatplotLibBridge-Errors' !
6
+ SystemOrganization addCategory: # ' MatplotLibBridge-Examples' !
You can’t perform that action at this time.
0 commit comments