Skip to content

Commit

Permalink
[feenkcom/gtoolkit#4123] revert variablename to slot
Browse files Browse the repository at this point in the history
  • Loading branch information
syrel committed Oct 28, 2024
1 parent 7254593 commit 8d6360e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ GtBehaviorCreationForm >> classSlots: anObject [
GtBehaviorCreationForm >> classSlotsDescription [
<magritteDescription>
^ MAToManyRelationDescription new
label: 'Class-side vars';
label: 'Class-side slots';
priority: 6;
accessor: #classSlots;
classes: {String};
Expand Down Expand Up @@ -133,7 +133,7 @@ GtBehaviorCreationForm >> slots: anObject [
GtBehaviorCreationForm >> slotsDescription [
<magritteDescription>
^ MAToManyRelationDescription new
label: 'Instance-side vars';
label: 'Instance-side slots';
priority: 6;
accessor: #slots;
labelAptitude: [ BrGlamorousLabelAptitude new glamorousFormLabelStyle + (BrGlamorousWithLabelTooltipAptitude new text: 'Variables whose value is scoped to an instance of a class.')];
Expand Down
2 changes: 1 addition & 1 deletion src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ GtClassCreationForm >> classVars: anObject [
GtClassCreationForm >> classVarsDescription [
<magritteDescription>
^ MAToManyRelationDescription new
label: 'Static vars';
label: 'Class vars';
priority: 8;
accessor: #classVars;
labelAptitude: [ (BrGlamorousLabelAptitude new glamorousFormLabelStyle) + (BrGlamorousWithLabelTooltipAptitude new text: 'Variables whose values (memory) is shared across all instances of a class and its subclasses.') ];
Expand Down

0 comments on commit 8d6360e

Please sign in to comment.