Fixed clazy warnings: missing Q_OBJECT.

This commit is contained in:
Mat Sutcliffe
2018-12-17 16:42:05 +00:00
parent 333ea1b8df
commit e40af8132c
79 changed files with 156 additions and 6 deletions

View File

@@ -34,8 +34,10 @@ namespace BlackMisc
* Used for hand written interface based on virtual methods.
* Allows to relay a message to DBus in a single code line
*/
class CGenericDBusInterface : public QDBusAbstractInterface
class BLACKMISC_EXPORT CGenericDBusInterface : public QDBusAbstractInterface
{
Q_OBJECT
public:
//! Constructor
CGenericDBusInterface(const QString &serviceName, const QString &path, const QString &interfaceName, const QDBusConnection &connection, QObject *parent = nullptr) :