blob: 46697b068911a671cfcb14cd42da0ccca91928fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (C) 2016 Dmitry Savchenko
// Copyright (C) 2016 Vasiliy Sorokin
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "keyword.h"
#include <utils/theme/theme.h>
namespace Todo::Internal {
Keyword::Keyword()
: color(Utils::creatorColor(Utils::Theme::TextColorNormal))
{}
bool Keyword::equals(const Keyword &other) const
{
return name == other.name && iconType == other.iconType && color == other.color;
}
bool operator ==(const Keyword &k1, const Keyword &k2)
{
return k1.equals(k2);
}
bool operator !=(const Keyword &k1, const Keyword &k2)
{
return !k1.equals(k2);
}
} // namespace Todo::Internal
|