diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-01 20:49:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-02 00:37:51 +0300 |
commit | 4df121e6dcdf53436f50ce81dd60096ce0138a2c (patch) | |
tree | 7cadc707bb49e4c148ba9c182075697a9643e20a /src/guichan/include/guichan/widgets/slider.hpp | |
parent | ed3410d7eb61593a2235ddba97ce257c85e405a6 (diff) | |
download | manaverse-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.gz manaverse-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.bz2 manaverse-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.xz manaverse-4df121e6dcdf53436f50ce81dd60096ce0138a2c.zip |
Add const to more classes.
Diffstat (limited to 'src/guichan/include/guichan/widgets/slider.hpp')
-rw-r--r-- | src/guichan/include/guichan/widgets/slider.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guichan/include/guichan/widgets/slider.hpp b/src/guichan/include/guichan/widgets/slider.hpp index a22c36844..bf2ce5937 100644 --- a/src/guichan/include/guichan/widgets/slider.hpp +++ b/src/guichan/include/guichan/widgets/slider.hpp @@ -81,7 +81,7 @@ namespace gcn * * @param scaleEnd The end value of the slider scale. */ - Slider(double scaleEnd = 1.0); + Slider(const double scaleEnd = 1.0); /** * Constructor. @@ -89,7 +89,7 @@ namespace gcn * @param scaleStart The start value of the slider scale. * @param scaleEnd The end value of the slider scale. */ - Slider(double scaleStart, double scaleEnd); + Slider(const double scaleStart, const double scaleEnd); /** * Destructor. |