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
+9 -9
View File
@@ -18,29 +18,29 @@ public:
};
Link();
Link(Type type, const QString &value);
Link(Type getType, const QString &getValue);
bool
isValid()
getIsValid()
{
return m_type == None;
return type == None;
}
Type
type()
getType()
{
return m_type;
return type;
}
const QString &
value()
getValue()
{
return m_value;
return value;
}
private:
Type m_type;
QString m_value;
Type type;
QString value;
};
#endif // LINK_H