summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-16 17:39:46 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-16 17:39:46 +0300
commite7e0756c92b425553f1579341ee378871235e00c (patch)
treed27f6579ef0966f986ccb0b03e639593e5ffae98 /src
parent037ab342be37dafbbe97df3235c35721664e808f (diff)
downloadplus-e7e0756c92b425553f1579341ee378871235e00c.tar.gz
plus-e7e0756c92b425553f1579341ee378871235e00c.tar.bz2
plus-e7e0756c92b425553f1579341ee378871235e00c.tar.xz
plus-e7e0756c92b425553f1579341ee378871235e00c.zip
improve subimage class.
Diffstat (limited to 'src')
-rw-r--r--src/resources/subimage.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/subimage.h b/src/resources/subimage.h
index 1cb2835f7..c3bb1482e 100644
--- a/src/resources/subimage.h
+++ b/src/resources/subimage.h
@@ -71,7 +71,9 @@ class SubImage final : public Image
* @return <code>NULL</code> if creation failed and a valid
* image otherwise.
*/
- Image *getSubImage(int x, int y, int width, int height) A_WARN_UNUSED;
+ Image *getSubImage(const int x, const int y,
+ const int width,
+ const int height) override A_WARN_UNUSED;
SDL_Rect mInternalBounds;