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 f53d35d commit 20ff75a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ GtCoderNavigationPackagesTagsClassesElement >> buildProtocolGroupList [
GtCoderNavigationPackagesTagsClassesElement >> buildSlotGroupWithBinder: binderBlock onClick: clickBlock [
| classSlotGroup instanceGroup classVarGroup |
instanceGroup := BrGroup new
domainObject: 'instance-side vars';
domainObject: 'instance-side slots';
stream: #() asAsyncStream;
itemStencil: [ BrHorizontalPane new
aptitude: BrGlamorousListItemAptitude;
Expand All @@ -176,8 +176,8 @@ GtCoderNavigationPackagesTagsClassesElement >> buildSlotGroupWithBinder: binderB
when: BlClickEvent do: clickBlock ];
itemDataBinder: binderBlock;
shouldShowWithoutItems: false.
classSlotGroup := instanceGroup copy domainObject: 'class-side vars'.
classVarGroup := instanceGroup copy domainObject: 'static vars'.
classSlotGroup := instanceGroup copy domainObject: 'class-side slots'.
classVarGroup := instanceGroup copy domainObject: 'class vars'.
^ {instanceGroup.
classSlotGroup.
classVarGroup}
Expand Down

0 comments on commit 20ff75a

Please sign in to comment.