all repos — fluxbox @ dce4721c842b4f8630a566afa1ea51f7f08ad586

custom fork of the fluxbox windowmanager

TextBox::textStartPos can be const.
Mario J. Rugiero mrugiero@gmail.com
commit

dce4721c842b4f8630a566afa1ea51f7f08ad586

parent

6aff2f7c280631d9d8750c02d1e45ea1a342f7ea

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/FbTk/TextBox.hhsrc/FbTk/TextBox.hh

@@ -63,7 +63,7 @@ const FbString &text() const { return m_text.logical(); }

const Font &font() const { return *m_font; } GC gc() const { return m_gc; } int cursorPosition() const { return m_cursor_pos; } - int textStartPos(){ return m_start_pos; } + int textStartPos() const { return m_start_pos; } unsigned int findEmptySpaceLeft(); unsigned int findEmptySpaceRight();