Skip to content

Commit

Permalink
Unused ivars in FTHeaderColumnCellMorph and FastTablePresenter
Browse files Browse the repository at this point in the history
Fix #8248
- remove unused ivars
- categorize uncategorized classes
  • Loading branch information
astares committed Jan 4, 2021
1 parent c3cf32f commit 2cf76b1
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTCellMorph.class.st
Expand Up @@ -34,7 +34,7 @@ Class {
#instVars : [
'topSeparator'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #drawing }
Expand Down
Expand Up @@ -12,7 +12,7 @@ Class {
'leftColumn',
'rightColumn'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTDisplayColumn.class.st
Expand Up @@ -11,7 +11,7 @@ Class {
'column',
'width'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #'instance creation' }
Expand Down
Expand Up @@ -5,12 +5,9 @@ Class {
#name : #FTHeaderColumnCellMorph,
#superclass : #FTCellMorph,
#instVars : [
'column',
'allowSort',
'isColumnOrderedFromLeast',
'isColumnOrderedFromGreatest'
'column'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTIndentedCellMorph.class.st
Expand Up @@ -9,7 +9,7 @@ Class {
#instVars : [
'indentation'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #layout }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTRowLayout.class.st
Expand Up @@ -5,7 +5,7 @@ I simplify my parent (in an attept to achieve speed), but most important, Itake
Class {
#name : #FTRowLayout,
#superclass : #RowLayout,
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #layouting }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTSelectableMorph.class.st
Expand Up @@ -12,7 +12,7 @@ Class {
#instVars : [
'selectionColor'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #initialization }
Expand Down
Expand Up @@ -36,7 +36,7 @@ Class {
'exposedRows',
'startColumnIndex'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #accessing }
Expand Down
Expand Up @@ -4,7 +4,7 @@ I contain table rows, but opposite to my parent, I calculate my row heights allo
Class {
#name : #FTTableContainerRowNotHomogeneousMorph,
#superclass : #FTTableContainerMorph,
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #private }
Expand Down
Expand Up @@ -5,7 +5,7 @@ All my work is to keep header cells, but my behavior is slightly different to my
Class {
#name : #FTTableHeaderRowMorph,
#superclass : #FTTableRowMorph,
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #'event handling' }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTTableMorph.class.st
Expand Up @@ -50,7 +50,7 @@ Class {
'resizable',
'selectionModeStrategy'
],
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Morphic-Widgets-FastTable/FTTableRowMorph.class.st
Expand Up @@ -5,7 +5,7 @@ All my work is to keep cells.
Class {
#name : #FTTableRowMorph,
#superclass : #FTSelectableMorph,
#category : #'Morphic-Widgets-FastTable'
#category : #'Morphic-Widgets-FastTable-Base'
}

{ #category : #'instance creation' }
Expand Down
1 change: 0 additions & 1 deletion src/Spec-Core/FastTablePresenter.class.st
Expand Up @@ -6,7 +6,6 @@ Class {
#superclass : #ListPresenter,
#instVars : [
'iconHolder',
'displayBlock',
'handlesDoubleClick',
'doubleClick',
'columns'
Expand Down

0 comments on commit 2cf76b1

Please sign in to comment.