aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/components/Select.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/components/Select.h')
-rw-r--r--include/cru/ui/components/Select.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/ui/components/Select.h b/include/cru/ui/components/Select.h
index cc658092..d5ff0b43 100644
--- a/include/cru/ui/components/Select.h
+++ b/include/cru/ui/components/Select.h
@@ -13,10 +13,10 @@ class CRU_UI_API Select : public Component {
public:
ui::controls::Control* GetRootControl() override { return &button_; }
- std::vector<String> GetItems() { return items_; }
+ std::vector<String> GetItems() const { return items_; }
void SetItems(std::vector<String> items);
- Index GetSelectedIndex() { return selected_index_; }
+ Index GetSelectedIndex() const { return selected_index_; }
void SetSelectedIndex(Index index);
IEvent<Index>* ItemSelectedEvent() { return &item_selected_event_; }