mirror of https://github.com/buggins/dlangui.git
class Button text() const
This commit is contained in:
parent
6db5d2cece
commit
925224fdf8
|
@ -529,7 +529,7 @@ class RadioButton : ImageTextButton {
|
||||||
/// Text only button
|
/// Text only button
|
||||||
class Button : Widget {
|
class Button : Widget {
|
||||||
protected UIString _text;
|
protected UIString _text;
|
||||||
override @property dstring text() { return _text; }
|
override @property dstring text() const { return _text; }
|
||||||
override @property Widget text(dstring s) { _text = s; requestLayout(); return this; }
|
override @property Widget text(dstring s) { _text = s; requestLayout(); return this; }
|
||||||
override @property Widget text(UIString s) { _text = s; requestLayout(); return this; }
|
override @property Widget text(UIString s) { _text = s; requestLayout(); return this; }
|
||||||
@property Widget textResource(string s) { _text = s; requestLayout(); return this; }
|
@property Widget textResource(string s) { _text = s; requestLayout(); return this; }
|
||||||
|
|
Loading…
Reference in New Issue