diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-25 09:41:16 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-25 09:41:16 -0500 |
| commit | fab2eeae0058a2f2f592cb85874c61a803b0cafe (patch) | |
| tree | ab83c7f70a16bb110080cf4a7b9e10d759659a17 | |
| parent | 43992b51a31067f2168b46f18758f9cc50371165 (diff) | |
More specific message for bounds when it's an invalid ID
| -rw-r--r-- | sigmod/Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmod/Object.cpp b/sigmod/Object.cpp index 9c45d8c6..99e42f16 100644 --- a/sigmod/Object.cpp +++ b/sigmod/Object.cpp @@ -114,7 +114,7 @@ QString Sigmod::Object::bounds(const QString& variable, const QString& min, cons QString Sigmod::Object::bounds(const QString& variable, const int value) { - return QString("Value for %1 out-of-bounds (%2)").arg(variable).arg(value); + return QString("Value for %1 out-of-bounds (invalid id) (%2)").arg(variable).arg(value); } QString Sigmod::Object::bounds(const QString& variable, const QString& value) |
