# HG changeset patch # User Claus Gittinger # Date 938345776 -7200 # Node ID 8abb4de4f8f50b0af0e07a22b8b103a77a24cd8b # Parent 1e7f30057e2234fe84d55ef4039346bcc5b5d814 added access to field. diff -r 1e7f30057e22 -r 8abb4de4f8f5 ComboView.st --- a/ComboView.st Fri Sep 24 19:09:27 1999 +0200 +++ b/ComboView.st Sun Sep 26 13:36:16 1999 +0200 @@ -169,6 +169,15 @@ !ComboView methodsFor:'accessing-components'! +field + "return the field (input or label) component. + For knowledgable users only." + + ^ field + + "Created: / 26.9.1999 / 13:33:15 / cg" +! + menuButton "return the menuButton component" @@ -606,5 +615,5 @@ !ComboView class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.55 1999-09-21 12:22:58 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.56 1999-09-26 11:36:16 cg Exp $' ! !