diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
commit | 3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9 (patch) | |
tree | 2053748aba4fd1e01020effe9322757426354d28 /src/gui/widgets/playerbox.cpp | |
parent | 2577a25f8a4acf587526809fda2ded95875e1222 (diff) | |
download | plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.gz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.bz2 plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.xz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.zip |
Add missing const in gui directory.
Diffstat (limited to 'src/gui/widgets/playerbox.cpp')
-rw-r--r-- | src/gui/widgets/playerbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/playerbox.cpp b/src/gui/widgets/playerbox.cpp index ac893b850..d796458da 100644 --- a/src/gui/widgets/playerbox.cpp +++ b/src/gui/widgets/playerbox.cpp @@ -115,7 +115,7 @@ void PlayerBox::init(std::string name, std::string selectedName) } } -void PlayerBox::draw(Graphics *graphics) +void PlayerBox::draw(Graphics *const graphics) { BLOCK_START("PlayerBox::draw") if (mBeing) @@ -138,12 +138,12 @@ void PlayerBox::draw(Graphics *graphics) BLOCK_END("PlayerBox::draw") } -void PlayerBox::safeDraw(Graphics *graphics) +void PlayerBox::safeDraw(Graphics *const graphics) { PlayerBox::draw(graphics); } -void PlayerBox::drawFrame(Graphics *graphics) +void PlayerBox::drawFrame(Graphics *const graphics) { BLOCK_START("PlayerBox::drawFrame") if (mDrawBackground) @@ -160,7 +160,7 @@ void PlayerBox::drawFrame(Graphics *graphics) BLOCK_END("PlayerBox::drawFrame") } -void PlayerBox::safeDrawFrame(Graphics *graphics) +void PlayerBox::safeDrawFrame(Graphics *const graphics) { BLOCK_START("PlayerBox::drawFrame") if (mDrawBackground) |