diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-01 23:56:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-02 14:28:17 +0300 |
commit | 520a495c466793c29f3e721634dfe6cc616b8ede (patch) | |
tree | 749b67f5d4df83f6f4997dabeb66ec394eabccd7 /src/gui/widgets/scrollarea.cpp | |
parent | f9030497b6196ce2fadb6b6ada5d784be227d9a6 (diff) | |
download | ManaVerse-520a495c466793c29f3e721634dfe6cc616b8ede.tar.gz ManaVerse-520a495c466793c29f3e721634dfe6cc616b8ede.tar.bz2 ManaVerse-520a495c466793c29f3e721634dfe6cc616b8ede.tar.xz ManaVerse-520a495c466793c29f3e721634dfe6cc616b8ede.zip |
Add missing const.
Diffstat (limited to 'src/gui/widgets/scrollarea.cpp')
-rw-r--r-- | src/gui/widgets/scrollarea.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/scrollarea.cpp b/src/gui/widgets/scrollarea.cpp index b748e30a1..8761e3f7d 100644 --- a/src/gui/widgets/scrollarea.cpp +++ b/src/gui/widgets/scrollarea.cpp @@ -532,7 +532,7 @@ void ScrollArea::drawVBar(Graphics *const graphics) const } } -void ScrollArea::calcVBar(Graphics *const graphics) +void ScrollArea::calcVBar(const Graphics *const graphics) { const Rect &dim = getVerticalBarDimension(); @@ -587,7 +587,7 @@ void ScrollArea::drawHBar(Graphics *const graphics) const } } -void ScrollArea::calcHBar(Graphics *const graphics) +void ScrollArea::calcHBar(const Graphics *const graphics) { const Rect &dim = getHorizontalBarDimension(); |