summaryrefslogtreecommitdiffstats
path: root/sigscript/MapEffectWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/MapEffectWrapper.cpp')
-rw-r--r--sigscript/MapEffectWrapper.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigscript/MapEffectWrapper.cpp b/sigscript/MapEffectWrapper.cpp
index d51cdca0..da10d478 100644
--- a/sigscript/MapEffectWrapper.cpp
+++ b/sigscript/MapEffectWrapper.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -41,10 +41,10 @@ QString Sigscript::MapEffectWrapper::name() const
return m_effect->name();
}
-QPoint Sigscript::MapEffectWrapper::coordinate() const
+QPoint Sigscript::MapEffectWrapper::position() const
{
- ALLOW_OVERRIDE_SO(effect, QPoint, coordinate);
- return m_effect->coordinate();
+ ALLOW_OVERRIDE_SO(effect, QPoint, position);
+ return m_effect->position();
}
Sigscript::SkinWrapper* Sigscript::MapEffectWrapper::skin()