diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-03-27 14:51:10 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-03-27 14:51:10 +0000 |
commit | 479dcf7e5c79cae48deebb613cd951df7d8d2b46 (patch) | |
tree | 433189fc106f6e49328173e2a3b36f737641a2c4 /src/gui/scrollarea.cpp | |
parent | adb2d7987c0395ae9814dc6f8adccc3f0ef7afe4 (diff) | |
download | mana-479dcf7e5c79cae48deebb613cd951df7d8d2b46.tar.gz mana-479dcf7e5c79cae48deebb613cd951df7d8d2b46.tar.bz2 mana-479dcf7e5c79cae48deebb613cd951df7d8d2b46.tar.xz mana-479dcf7e5c79cae48deebb613cd951df7d8d2b46.zip |
Applied patch by peavey and added his name to the ChangeLog some more.
Diffstat (limited to 'src/gui/scrollarea.cpp')
-rw-r--r-- | src/gui/scrollarea.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index cf555ef4..cd83b565 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -86,8 +86,8 @@ void ScrollArea::init() // Load the background skin ResourceManager *resman = ResourceManager::getInstance(); Image *textbox = resman->getImage("graphics/gui/deepbox.png"); - int bggridx[4] = {0, 3, 28, 31}; - int bggridy[4] = {0, 3, 28, 31}; + const int bggridx[4] = {0, 3, 28, 31}; + const int bggridy[4] = {0, 3, 28, 31}; int a = 0, x, y; for (y = 0; y < 3; y++) { |