summaryrefslogtreecommitdiff
path: root/src/render/imagegraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-06-29 23:14:53 +0300
committerAndrei Karas <akaras@inbox.ru>2014-06-29 23:39:00 +0300
commitab7cbe78ea676d5932881152631e6a6eafa530de (patch)
tree47610db47cbaeb0a8e275f7dc35524b1e87b756c /src/render/imagegraphics.cpp
parentd02762b6dc35e1564e5d1cc7458458f824f251f9 (diff)
downloadplus-ab7cbe78ea676d5932881152631e6a6eafa530de.tar.gz
plus-ab7cbe78ea676d5932881152631e6a6eafa530de.tar.bz2
plus-ab7cbe78ea676d5932881152631e6a6eafa530de.tar.xz
plus-ab7cbe78ea676d5932881152631e6a6eafa530de.zip
Remove useless bool return value from renderers.
Diffstat (limited to 'src/render/imagegraphics.cpp')
-rw-r--r--src/render/imagegraphics.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/render/imagegraphics.cpp b/src/render/imagegraphics.cpp
index 8f9cd8943..b439fb0e4 100644
--- a/src/render/imagegraphics.cpp
+++ b/src/render/imagegraphics.cpp
@@ -42,20 +42,17 @@ ImegeGraphics::~ImegeGraphics()
{
}
-bool ImegeGraphics::drawImage(const Image *const image A_UNUSED,
+void ImegeGraphics::drawImage(const Image *const image A_UNUSED,
int dstX A_UNUSED, int dstY A_UNUSED)
{
// for now not implimented
- return false;
}
-bool ImegeGraphics::copyImage(const Image *const image,
+void ImegeGraphics::copyImage(const Image *const image,
int dstX A_UNUSED, int dstY A_UNUSED)
{
if (!mTarget || !image)
- return false;
-
- return false;
+ return;
}
void ImegeGraphics::drawImageCached(const Image *const image,