Git commit 4d7015137ac4b6493e7fbd95b49f75771fe1720b by Rolf Eike Beer. Committed on 31/05/2014 at 18:07. Pushed by dakon into branch 'master'. make KgpgKeyList no longer inherit from QObject M +3 -3 core/kgpgkey.h http://commits.kde.org/kgpg/4d7015137ac4b6493e7fbd95b49f75771fe1720b diff --git a/core/kgpgkey.h b/core/kgpgkey.h index 5788aee..1e345f8 100644 --- a/core/kgpgkey.h +++ b/core/kgpgkey.h @@ -290,13 +290,13 @@ private: QSharedDataPointer d; }; = -class KgpgKeyList : public QList, public QObject +class KgpgKeyList : public QList { public: inline KgpgKeyList() { } inline explicit KgpgKeyList(const KgpgKey &key) { append(key); } - inline KgpgKeyList(const KgpgKeyList &other) : QList(other), = QObject() { } - inline KgpgKeyList(const QList &other) : QList(other= ), QObject() { } + inline KgpgKeyList(const KgpgKeyList &other) : QList(other) {= } + inline KgpgKeyList(const QList &other) : QList(other= ) { } = inline KgpgKeyList& operator=3D(const KgpgKeyList &other) {