diff -r 68443f5be176 -r 44679e468ba9 src/objecttypes/errorline.h --- a/src/objecttypes/errorline.h Sat Oct 05 23:47:03 2019 +0300 +++ b/src/objecttypes/errorline.h Sun Nov 03 12:17:41 2019 +0200 @@ -9,7 +9,7 @@ class modelobjects::ErrorLine : public BaseObject { public: - ErrorLine(QStringView text = u""); + ErrorLine(QStringView text = u"", QStringView message = u""); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, @@ -19,4 +19,5 @@ QBrush textRepresentationBackground() const override; private: QString text; + QString message; };