fixed project code style in some files
This commit is contained in:
+18
-3
@@ -9,11 +9,26 @@ Link::Link()
|
||||
{
|
||||
}
|
||||
|
||||
Link::Link(Type type, const QString &value)
|
||||
: type(type)
|
||||
, value(value)
|
||||
Link::Link(Type _type, const QString &_value)
|
||||
: type(_type)
|
||||
, value(_value)
|
||||
{
|
||||
}
|
||||
|
||||
bool Link::isValid() const
|
||||
{
|
||||
return this->type != None;
|
||||
}
|
||||
|
||||
Link::Type Link::getType() const
|
||||
{
|
||||
return this->type;
|
||||
}
|
||||
|
||||
const QString &Link::getValue() const
|
||||
{
|
||||
return this->value;
|
||||
}
|
||||
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
Reference in New Issue
Block a user