From 83b69253dcc172738ce3f212445c1717976911ea Mon Sep 17 00:00:00 2001 From: joshua Date: Thu, 11 Mar 2021 19:49:46 +0100 Subject: [PATCH] Revert "fix compile error" This reverts commit b1813111627275d4ec2eb06d226e745de54786f7. --- sources/properties/propertiesinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/properties/propertiesinterface.cpp b/sources/properties/propertiesinterface.cpp index c6b57f0b8..1899595b2 100644 --- a/sources/properties/propertiesinterface.cpp +++ b/sources/properties/propertiesinterface.cpp @@ -73,7 +73,7 @@ bool PropertiesInterface::fromXml (const QDomElement &xml_element) } bool PropertiesInterface::valideXml(QDomElement& element) { - qDebug() << "Error: ValideXml() is not implemented for a derived class of PropertiesInterface"; + qDebug(QString("ValideXml() is not implemented. File: %1, Line: %2").arg(__FILE__).arg(__LINE__).toStdString().data()); return false; }