summaryrefslogtreecommitdiffstats
path: root/sigmodr/PointWidget.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigmodr/PointWidget.cpp
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmodr/PointWidget.cpp')
-rw-r--r--sigmodr/PointWidget.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/sigmodr/PointWidget.cpp b/sigmodr/PointWidget.cpp
index 82168925..9153160d 100644
--- a/sigmodr/PointWidget.cpp
+++ b/sigmodr/PointWidget.cpp
@@ -18,19 +18,19 @@
// Header include
#include "PointWidget.h"
-Pokemodr::PointWidget::PointWidget(QWidget* parent, const QPoint& value) :
+Sigmodr::PointWidget::PointWidget(QWidget* parent, const QPoint& value) :
QWidget(parent),
m_value(value)
{
setupUi(this);
}
-QPoint Pokemodr::PointWidget::value() const
+QPoint Sigmodr::PointWidget::value() const
{
return m_value;
}
-void Pokemodr::PointWidget::setValue(const QPoint& value)
+void Sigmodr::PointWidget::setValue(const QPoint& value)
{
if (m_value == value)
return;
@@ -40,19 +40,19 @@ void Pokemodr::PointWidget::setValue(const QPoint& value)
emit(valueChanged(m_value));
}
-void Pokemodr::PointWidget::setMaximum(const QPoint& maximum)
+void Sigmodr::PointWidget::setMaximum(const QPoint& maximum)
{
varX->setMaximum(maximum.x());
varY->setMaximum(maximum.y());
}
-void Pokemodr::PointWidget::on_varX_valueChanged(const int x)
+void Sigmodr::PointWidget::on_varX_valueChanged(const int x)
{
m_value.setX(x);
emit(valueChanged(m_value));
}
-void Pokemodr::PointWidget::on_varY_valueChanged(const int y)
+void Sigmodr::PointWidget::on_varY_valueChanged(const int y)
{
m_value.setY(y);
emit(valueChanged(m_value));