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