summaryrefslogtreecommitdiff
path: root/src/guichan/include
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-19 21:18:14 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-19 22:24:00 +0300
commitca945c9bd62318109246443c6d43091885e817b1 (patch)
treec718a5fb680ad348317d6b9816eb5777eab14418 /src/guichan/include
parentdf948918905e15c62474a52dc895c6d1c181c506 (diff)
downloadmv-ca945c9bd62318109246443c6d43091885e817b1.tar.gz
mv-ca945c9bd62318109246443c6d43091885e817b1.tar.bz2
mv-ca945c9bd62318109246443c6d43091885e817b1.tar.xz
mv-ca945c9bd62318109246443c6d43091885e817b1.zip
Optimisations in scrollarea class.
Diffstat (limited to 'src/guichan/include')
-rw-r--r--src/guichan/include/guichan/widgets/scrollarea.hpp14
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.
*/