diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-10-14 17:21:06 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-10-14 17:21:06 +0200 |
commit | 5bcfa1aeab5def47b147c77f915028b76fdd4844 (patch) | |
tree | f556d3bdff38af7fb2fc1fc4f9150f17c072059c /plugingui/lineedit.h | |
parent | adc6d371af2cf356578fee6be0711d6db7f31288 (diff) |
Remove errornously committed changes for plugingui branch.
Diffstat (limited to 'plugingui/lineedit.h')
-rw-r--r-- | plugingui/lineedit.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugingui/lineedit.h b/plugingui/lineedit.h index 2c37522..f85e9bd 100644 --- a/plugingui/lineedit.h +++ b/plugingui/lineedit.h @@ -65,6 +65,15 @@ private: std::string _text; size_t pos; + std::string _visibletext; + size_t offsetpos; + + enum state_t { + NOOP = 0, + WALK_LEFT = 1, + WALK_RIGHT = 2 + }; + state_t walkstate; bool readonly; |