From 8d6360e51188b7459c937a72ec1a11757215d838 Mon Sep 17 00:00:00 2001 From: Aliaksei Syrel Date: Mon, 28 Oct 2024 10:53:03 +0100 Subject: [PATCH] [feenkcom/gtoolkit#4123] revert `variable`name to `slot` --- src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st | 4 ++-- src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st b/src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st index 369e6494..d05c4579 100644 --- a/src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st +++ b/src/GToolkit-Pharo-Coder-UI/GtBehaviorCreationForm.class.st @@ -34,7 +34,7 @@ GtBehaviorCreationForm >> classSlots: anObject [ GtBehaviorCreationForm >> classSlotsDescription [ ^ MAToManyRelationDescription new - label: 'Class-side vars'; + label: 'Class-side slots'; priority: 6; accessor: #classSlots; classes: {String}; @@ -133,7 +133,7 @@ GtBehaviorCreationForm >> slots: anObject [ GtBehaviorCreationForm >> slotsDescription [ ^ 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.')]; diff --git a/src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st b/src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st index 6748a74a..adb75e8b 100644 --- a/src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st +++ b/src/GToolkit-Pharo-Coder-UI/GtClassCreationForm.class.st @@ -50,7 +50,7 @@ GtClassCreationForm >> classVars: anObject [ GtClassCreationForm >> classVarsDescription [ ^ 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.') ];