Hi,

In the issue 18742 add class to manage focusorder, Peter Uhnák says:

"
The idiomatic way of creating icons should be either
#smallBackIcon asIcon (ideally)

or the long-form
(Smalltalk ui icons iconNamed: #smallBackIcon)
"


But there is a third way, ComposableModel defines iconNamed: like that

ComposableModel>>iconNamed: aSymbol
  ^ Smalltalk ui icons iconNamed: aSymbol

So it is possible to use self iconNamed: #smallBackIcon

So my question is: what way is really ideal ?

Reply via email to