summaryrefslogtreecommitdiff
path: root/plugingui/lineedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/lineedit.h')
-rw-r--r--plugingui/lineedit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugingui/lineedit.h b/plugingui/lineedit.h
index 515ea94..ae1c7b8 100644
--- a/plugingui/lineedit.h
+++ b/plugingui/lineedit.h
@@ -63,16 +63,16 @@ private:
Font font;
std::string _text;
- size_t pos = 0;
+ size_t pos{0};
std::string visibleText;
- size_t offsetPos = 0;
+ size_t offsetPos{0};
enum state_t {
Noop,
WalkLeft,
WalkRight,
};
- state_t walkstate;
+ state_t walkstate{Noop};
bool readonly;
};