--- a/src/format.h Sun Jun 10 23:25:08 2018 +0300 +++ b/src/format.h Sun Jun 17 13:53:33 2018 +0300 @@ -22,7 +22,6 @@ #include <QModelIndex> #include "basics.h" #include "colors.h" -#include "types/matrix.h" #include "types/vertex.h" // Converts a given value into a string that can be retrieved with text(). @@ -39,7 +38,6 @@ StringFormatArg (float a) : m_text (QString::number (a)) {} StringFormatArg (double a) : m_text (QString::number (a)) {} StringFormatArg (const Vertex& a) : m_text (a.toString()) {} - StringFormatArg (const Matrix& a) : m_text (a.toString()) {} StringFormatArg (const char* a) : m_text (a) {} StringFormatArg (LDColor a) : m_text (a.indexString()) {}