Resolved issue #504. Suppress message about absolute measurement path.

I decided to completely eliminate warning strings because they do not change
anything.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-11-07 15:04:00 +02:00
parent 2f1524d0db
commit 32c7db68e0

View File

@ -1794,7 +1794,6 @@ QString RelativeMPath(const QString &patternPath, const QString &absoluteMPath)
if (QFileInfo(absoluteMPath).isRelative()) if (QFileInfo(absoluteMPath).isRelative())
{ {
qWarning() << QApplication::tr("The path to the measurments is already relative.");
return absoluteMPath; return absoluteMPath;
} }
@ -1811,7 +1810,6 @@ QString AbsoluteMPath(const QString &patternPath, const QString &relativeMPath)
if (QFileInfo(relativeMPath).isAbsolute()) if (QFileInfo(relativeMPath).isAbsolute())
{ {
qWarning() << QApplication::tr("The path to the measurments is already absolute.");
return relativeMPath; return relativeMPath;
} }