orientation const added

This commit is contained in:
Denis Feklushkin 2017-11-12 20:45:13 +07:00
parent 413fd9a753
commit 9292783204
2 changed files with 2 additions and 2 deletions

View File

@ -362,7 +362,7 @@ class ImageTextButton : HorizontalLayout {
override @property Widget text(UIString s) { _label.text = s; requestLayout(); return this; }
/// Returns orientation: Vertical - image top, Horizontal - image left"
override @property Orientation orientation() {
override @property Orientation orientation() const {
return super.orientation();
}

View File

@ -521,7 +521,7 @@ class ResizerWidget : Widget {
class LinearLayout : WidgetGroupDefaultDrawing {
protected Orientation _orientation = Orientation.Vertical;
/// returns linear layout orientation (Vertical, Horizontal)
@property Orientation orientation() { return _orientation; }
@property Orientation orientation() const { return _orientation; }
/// sets linear layout orientation
@property LinearLayout orientation(Orientation value) { _orientation = value; requestLayout(); return this; }