diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-19 21:18:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-19 22:24:00 +0300 |
commit | ca945c9bd62318109246443c6d43091885e817b1 (patch) | |
tree | c718a5fb680ad348317d6b9816eb5777eab14418 /src/guichan/include | |
parent | df948918905e15c62474a52dc895c6d1c181c506 (diff) | |
download | plus-ca945c9bd62318109246443c6d43091885e817b1.tar.gz plus-ca945c9bd62318109246443c6d43091885e817b1.tar.bz2 plus-ca945c9bd62318109246443c6d43091885e817b1.tar.xz plus-ca945c9bd62318109246443c6d43091885e817b1.zip |
Optimisations in scrollarea class.
Diffstat (limited to 'src/guichan/include')
-rw-r--r-- | src/guichan/include/guichan/widgets/scrollarea.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/guichan/include/guichan/widgets/scrollarea.hpp b/src/guichan/include/guichan/widgets/scrollarea.hpp index 0b2ccad92..29f95ad85 100644 --- a/src/guichan/include/guichan/widgets/scrollarea.hpp +++ b/src/guichan/include/guichan/widgets/scrollarea.hpp @@ -433,42 +433,42 @@ namespace gcn * * @return the dimension of the up button. */ - Rectangle getUpButtonDimension(); + Rectangle getUpButtonDimension() const; /** * Gets the down button dimension. * * @return the dimension of the down button. */ - Rectangle getDownButtonDimension(); + Rectangle getDownButtonDimension() const; /** * Gets the left button dimension. * * @return the dimension of the left button. */ - Rectangle getLeftButtonDimension(); + Rectangle getLeftButtonDimension() const; /** * Gets the right button dimension. * * @return the dimension of the right button. */ - Rectangle getRightButtonDimension(); + Rectangle getRightButtonDimension() const; /** * Gets the vertical scrollbar dimension. * * @return the dimension of the vertical scrollbar. */ - Rectangle getVerticalBarDimension(); + Rectangle getVerticalBarDimension() const; /** * Gets the horizontal scrollbar dimension. * * @return the dimension of the horizontal scrollbar. */ - Rectangle getHorizontalBarDimension(); + Rectangle getHorizontalBarDimension() const; /** * Gets the vertical marker dimension. @@ -483,7 +483,7 @@ namespace gcn * @return the dimension of the horizontal marker. */ Rectangle getHorizontalMarkerDimension(); - + /** * Holds the vertical scroll amount. */ |