diff options
Diffstat (limited to 'src/guiTable.h')
-rw-r--r-- | src/guiTable.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/guiTable.h b/src/guiTable.h index 4d5b39166..02e8af00b 100644 --- a/src/guiTable.h +++ b/src/guiTable.h @@ -74,11 +74,10 @@ public: std::string name; std::string value; - Option(const std::string &name_, const std::string &value_) - { - name = name_; - value = value_; - } + Option(const std::string &name_, const std::string &value_) : + name(name_), + value(value_) + {} }; /* @@ -197,7 +196,7 @@ protected: bool m_sel_doubleclick; // Keyboard navigation stuff - s32 m_keynav_time; + u64 m_keynav_time; core::stringw m_keynav_buffer; // Drawing and geometry information |