summaryrefslogtreecommitdiffstats
path: root/sigscript/MapEffectWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/MapEffectWrapper.cpp')
-rw-r--r--sigscript/MapEffectWrapper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sigscript/MapEffectWrapper.cpp b/sigscript/MapEffectWrapper.cpp
index c9b61296..491a3d3c 100644
--- a/sigscript/MapEffectWrapper.cpp
+++ b/sigscript/MapEffectWrapper.cpp
@@ -48,10 +48,10 @@ QString MapEffectWrapper::name() const
return m_effect->name();
}
-QPoint MapEffectWrapper::position() const
+QRect MapEffectWrapper::area() const
{
- ALLOW_OVERRIDE_SO(effect, QPoint, position);
- return m_effect->position();
+ ALLOW_OVERRIDE_SO(effect, QRect, area);
+ return m_effect->area();
}
SkinWrapper* MapEffectWrapper::skin()