diff --git a/src/libs/ifc/xml/vdomdocument.cpp b/src/libs/ifc/xml/vdomdocument.cpp index 924e6b652..21ad7f939 100644 --- a/src/libs/ifc/xml/vdomdocument.cpp +++ b/src/libs/ifc/xml/vdomdocument.cpp @@ -594,7 +594,7 @@ void VDomDocument::CollectId(const QDomElement &node, QVector &vector) const quint32 id = GetParametrId(node); if (vector.contains(id)) { - throw VExceptionWrongId(tr("This id is not unique."), node); + throw VExceptionWrongId(QString("This id (%1) is not unique.").arg(id), node); } vector.append(id); }