Clang warnings.
This commit is contained in:
parent
f762d81b38
commit
6e0bf20bc4
|
@ -57,7 +57,7 @@ public:
|
|||
void SetTags(const QStringList &tags);
|
||||
QStringList GetTags() const;
|
||||
|
||||
void SetGroupCategories(const QStringList &categories);
|
||||
virtual void SetGroupCategories(const QStringList &categories) override;
|
||||
|
||||
QMap<quint32, quint32> GetGroup() const;
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@ class MultiSelectCompleter : public QCompleter
|
|||
{
|
||||
public:
|
||||
explicit MultiSelectCompleter(QObject* parent=nullptr);
|
||||
MultiSelectCompleter(const QStringList& items, QObject* parent=nullptr);
|
||||
virtual ~MultiSelectCompleter() =default;
|
||||
|
||||
virtual QString pathFromIndex(const QModelIndex& index) const override;
|
||||
|
@ -59,11 +58,6 @@ MultiSelectCompleter::MultiSelectCompleter(QObject *parent)
|
|||
: QCompleter(parent)
|
||||
{}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
MultiSelectCompleter::MultiSelectCompleter(const QStringList& items, QObject* parent)
|
||||
: QCompleter(items, parent)
|
||||
{}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
QString MultiSelectCompleter::pathFromIndex(const QModelIndex& index) const
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user