summaryrefslogtreecommitdiff
path: root/src/resources/imageset.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-22 02:10:59 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-22 02:10:59 +0300
commit1ff17739796e327e30a78b544be9865420d4c807 (patch)
tree929dd877616f25ca74943f4225e51cc01aecf928 /src/resources/imageset.h
parent5133814218de74d57c7febadf61b3ab05216dc25 (diff)
downloadplus-1ff17739796e327e30a78b544be9865420d4c807.tar.gz
plus-1ff17739796e327e30a78b544be9865420d4c807.tar.bz2
plus-1ff17739796e327e30a78b544be9865420d4c807.tar.xz
plus-1ff17739796e327e30a78b544be9865420d4c807.zip
Remove default parameters from imageset.
Diffstat (limited to 'src/resources/imageset.h')
-rw-r--r--src/resources/imageset.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/resources/imageset.h b/src/resources/imageset.h
index 78907fbba..e31317731 100644
--- a/src/resources/imageset.h
+++ b/src/resources/imageset.h
@@ -40,8 +40,11 @@ class ImageSet notfinal : public Resource
/**
* Cuts the passed image in a grid of sub images.
*/
- ImageSet(Image *const img, const int w, const int h,
- const int margin = 0, const int spacing = 0);
+ ImageSet(Image *const img,
+ const int w,
+ const int h,
+ const int margin,
+ const int spacing);
A_DELETE_COPY(ImageSet)