Skip to content

Commit

Permalink
initializeAsButtonHolder renamed as initializeAsButtonOwner
Browse files Browse the repository at this point in the history
  • Loading branch information
plantec committed Jan 28, 2025
1 parent fc4da37 commit 8790c68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Toplo-Widget-Accordion/ToAccordionXPElement.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ToAccordionXPElement >> expand [
ToAccordionXPElement >> initialize [

super initialize.
self initializeAsButtonHolder.
self initializeAsButtonOwner.
isCollapsed := true.
self height: 30.
self layout: BlLinearLayout vertical.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ToBasicAccordionElement >> expand [
ToBasicAccordionElement >> initialize [

super initialize.
self initializeAsButtonHolder.
self initializeAsButtonOwner.
isCollapsed := true.
self height: 30.
self layout: BlLinearLayout vertical.
Expand Down
2 changes: 1 addition & 1 deletion src/Toplo-Widget-Menu/TToButtonOwner.trait.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ TToButtonOwner >> clickEventClass [
]

{ #category : #'t - button holder' }
TToButtonOwner >> initializeAsButtonHolder [
TToButtonOwner >> initializeAsButtonOwner [

self button: self buttonClass new.
self button takeFocusOnClick: false.
Expand Down
2 changes: 1 addition & 1 deletion src/Toplo-Widget-Menu/ToGeneralButtonMenuItem.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Class {
ToGeneralButtonMenuItem >> initialize [

super initialize.
self initializeAsButtonHolder
self initializeAsButtonOwner
]

0 comments on commit 8790c68

Please sign in to comment.