aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMario J. Rugiero <mrugiero@gmail.com>2014-12-20 04:05:49 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-05-01 08:46:21 (GMT)
commitdce4721c842b4f8630a566afa1ea51f7f08ad586 (patch)
tree8d9cc20af96754cb65f5ae3187504f7775034c6e /src
parent6aff2f7c280631d9d8750c02d1e45ea1a342f7ea (diff)
downloadfluxbox-dce4721c842b4f8630a566afa1ea51f7f08ad586.zip
fluxbox-dce4721c842b4f8630a566afa1ea51f7f08ad586.tar.bz2
TextBox::textStartPos can be const.
Diffstat (limited to 'src')
-rw-r--r--src/FbTk/TextBox.hh2
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();