juicy compiler error

This commit is contained in:
fourtf
2017-01-11 18:52:09 +01:00
parent 580a411e9d
commit 854566b57f
63 changed files with 1481 additions and 1067 deletions
+11 -5
View File
@@ -16,17 +16,23 @@ public:
};
Link();
Link(Type type, const QString& value);
Link(Type type, const QString &value);
bool isValid() {
bool
isValid()
{
return m_type == None;
}
Type type() {
Type
type()
{
return m_type;
}
const QString& value() {
const QString &
value()
{
return m_value;
}
@@ -35,4 +41,4 @@ private:
QString m_value;
};
#endif // LINK_H
#endif // LINK_H