changed notation

This commit is contained in:
fourtf
2017-01-18 04:33:30 +01:00
parent 552e4c957a
commit 10e4a0f785
61 changed files with 1214 additions and 1051 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
#include "link.h"
Link::Link()
: m_type(None)
, m_value(QString())
: type(None)
, value(QString())
{
}
Link::Link(Type type, const QString &value)
: m_type(type)
, m_value(value)
: type(type)
, value(value)
{
}