diff options
author | Mario J. Rugiero <mrugiero@gmail.com> | 2014-12-20 04:05:49 (GMT) |
---|---|---|
committer | Mathias Gumz <akira@fluxbox.org> | 2015-05-01 08:46:21 (GMT) |
commit | dce4721c842b4f8630a566afa1ea51f7f08ad586 (patch) | |
tree | 8d9cc20af96754cb65f5ae3187504f7775034c6e /src | |
parent | 6aff2f7c280631d9d8750c02d1e45ea1a342f7ea (diff) | |
download | fluxbox-dce4721c842b4f8630a566afa1ea51f7f08ad586.zip fluxbox-dce4721c842b4f8630a566afa1ea51f7f08ad586.tar.bz2 |
TextBox::textStartPos can be const.
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/TextBox.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/TextBox.hh b/src/FbTk/TextBox.hh index 7b42bd1..40a7c3c 100644 --- a/src/FbTk/TextBox.hh +++ b/src/FbTk/TextBox.hh | |||
@@ -63,7 +63,7 @@ public: | |||
63 | const Font &font() const { return *m_font; } | 63 | const Font &font() const { return *m_font; } |
64 | GC gc() const { return m_gc; } | 64 | GC gc() const { return m_gc; } |
65 | int cursorPosition() const { return m_cursor_pos; } | 65 | int cursorPosition() const { return m_cursor_pos; } |
66 | int textStartPos(){ return m_start_pos; } | 66 | int textStartPos() const { return m_start_pos; } |
67 | 67 | ||
68 | unsigned int findEmptySpaceLeft(); | 68 | unsigned int findEmptySpaceLeft(); |
69 | unsigned int findEmptySpaceRight(); | 69 | unsigned int findEmptySpaceRight(); |