Fix gcc9 compiler warnings

See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58407
This commit is contained in:
Lars Toenning
2020-04-15 10:54:57 +02:00
committed by Mat Sutcliffe
parent 66a1a87805
commit 6b811f9d47
2 changed files with 1 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ namespace BlackGui
protected:
//! Filter
bool eventFilter(QObject *object, QEvent *event);
virtual bool eventFilter(QObject *object, QEvent *event) override;
private:
QString m_illegalChars;

View File

@@ -55,9 +55,6 @@ namespace BlackMisc
//! Constructor
IOrderable(int order);
//! Constructor
IOrderable(const IOrderable &orderable) : IOrderable(orderable.m_order) {}
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
CVariant propertyByIndex(const CPropertyIndex &index) const;