summaryrefslogtreecommitdiffstats
path: root/sigmod/Object.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-12-26 12:00:37 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-12-26 12:00:37 -0500
commit5ad38938406c8a77bd2f83d5fccc84f3cd6e16bb (patch)
treeb904ad4f2c74c947096c0f25b57dc6b6ed164f7a /sigmod/Object.cpp
parent63961be3711be4543ffbcbdc4b667ecfbe7890ca (diff)
downloadsigen-5ad38938406c8a77bd2f83d5fccc84f3cd6e16bb.tar.gz
sigen-5ad38938406c8a77bd2f83d5fccc84f3cd6e16bb.tar.xz
sigen-5ad38938406c8a77bd2f83d5fccc84f3cd6e16bb.zip
Removed the QPoint bounds checker
Diffstat (limited to 'sigmod/Object.cpp')
-rw-r--r--sigmod/Object.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/sigmod/Object.cpp b/sigmod/Object.cpp
index 99e42f16..d747758d 100644
--- a/sigmod/Object.cpp
+++ b/sigmod/Object.cpp
@@ -101,12 +101,6 @@ QString Sigmod::Object::bounds(const QString& variable, const int min, const int
return msg.arg(value.numerator()).arg(value.denominator());
}
-QString Sigmod::Object::bounds(const QString& variable, const QPoint& min, const QPoint& max, const QPoint& value)
-{
- QString msg("Value for %1 out-of-bounds ((%2, %3) -- (%4, %5)) (%6 / %7)");
- return msg.arg(variable).arg(min.x()).arg(min.y()).arg(max.x()).arg(max.y()).arg(value.x()).arg(value.y());
-}
-
QString Sigmod::Object::bounds(const QString& variable, const QString& min, const QString& max, const int value)
{
return QString("Value for %1 out-of-bounds (%2 -- %3) (%4)").arg(variable).arg(min).arg(max).arg(value);