Skip to content

Commit

Permalink
remove bad reference to pillar
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Jul 28, 2020
1 parent 90bbdb3 commit f72fa4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
6 changes: 0 additions & 6 deletions src/Spec2-Core/SpPresenter.class.st
Expand Up @@ -820,12 +820,6 @@ SpPresenter >> newNumberInput [
^ self instantiate: SpNumberInputFieldPresenter
]

{ #category : #widgets }
SpPresenter >> newPillarText [

^ self instantiate: SpPillarTextPresenter
]

{ #category : #widgets }
SpPresenter >> newPopover [

Expand Down
9 changes: 6 additions & 3 deletions src/Spec2-Core/SpRichTextPresenter.class.st
Expand Up @@ -66,15 +66,18 @@ SpRichTextPresenter >> model [

{ #category : #'as yet unclassified' }
SpRichTextPresenter >> plaintext [
^ self textStyler value writePlaintextString: self model

^ nil
"^ self textStyler value writePlaintextString: self model"
]

{ #category : #rendering }
SpRichTextPresenter >> renderTree [

^ SpRenderTreeBuilderVisitor new
^ nil
"^ SpRenderTreeBuilderVisitor new
styleProvider: self styleAttributes;
render: self model
render: self model"
]

{ #category : #initialization }
Expand Down

0 comments on commit f72fa4b

Please sign in to comment.