# HG changeset patch # User Gerald Klix (speedy) # Date 1654347492 -7200 # Sat Jun 04 14:58:12 2022 +0200 # Node ID ba4b267e7215a9dc30a26a345dcd769401a777ba # Parent 2a8aa88a284e44ce51b0c622b0cc064de2198cb4 SUM: Adopted to some super class renaming. diff --git a/haver/ui/GridLayout.pck.st b/haver/ui/GridLayout.pck.st --- a/haver/ui/GridLayout.pck.st +++ b/haver/ui/GridLayout.pck.st @@ -1,6 +1,7 @@ -'From Haver 5.0 [latest update: #4637] on 17 June 2021 at 7:28:36 pm'! +'From Haver 6.0 [latest update: #5213] on 4 June 2022 at 2:41:51 pm'! 'Description I provide a grid-layout morph.'! -!provides: 'GridLayout' 1 6! +!provides: 'GridLayout' 1 7! +!requires: 'Cuis-Base' 60 5213 nil! SystemOrganization addCategory: 'GridLayout'! @@ -9,12 +10,12 @@ !interfacesOf: GridLayout! Modules environment: #GridLayout :: - interface: #UTI exporting: #(#GridLayoutMorph #CellMorph ) :: + interface: #UTI exporting: #(#CellMorph #GridLayoutMorph ) :: interface: #SPI aliasFor: #API! !classDefinition: (Modules>>#GridLayout>>#CellMorph) category: 'GridLayout'! -WidgetMorph subclass: #CellMorph +BoxedMorph subclass: #CellMorph instanceVariableNames: 'contents textComposition' classVariableNames: '' poolDictionaries: '' @@ -25,7 +26,7 @@ instanceVariableNames: ''! !classDefinition: (Modules>>#GridLayout>>#GridLayoutMorph) category: 'GridLayout'! -WidgetMorph subclass: #GridLayoutMorph +BoxedMorph subclass: #GridLayoutMorph instanceVariableNames: 'submorphCreator numberOfRows numberOfColumns rowHeights columnWidths' classVariableNames: '' poolDictionaries: ''