summaryrefslogtreecommitdiffstats
path: root/src/tools/controller/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/controller/main.cpp')
-rw-r--r--src/tools/controller/main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/controller/main.cpp b/src/tools/controller/main.cpp
index 7e144d2f..6d0141be 100644
--- a/src/tools/controller/main.cpp
+++ b/src/tools/controller/main.cpp
@@ -53,7 +53,8 @@
QT_USE_NAMESPACE_AM
-class DBus : public QObject {
+class DBus : public QObject // clazy:exclude=missing-qobject-macro
+{
public:
DBus()
{
@@ -180,7 +181,7 @@ static void removePackage(const QString &package, bool keepDocuments, bool force
static void listInstallationLocations();
static void showInstallationLocation(const QString &location);
-class ThrowingApplication : public QCoreApplication
+class ThrowingApplication : public QCoreApplication // clazy:exclude=missing-qobject-macro
{
public:
ThrowingApplication(int &argc, char **argv)
@@ -445,7 +446,7 @@ void startOrDebugApplication(const QString &debugWrapper, const QString &appId,
#if defined(POLLRDHUP)
// ssh does not forward Ctrl+C, but we can detect a hangup condition on stdin
- class HupThread : public QThread
+ class HupThread : public QThread // clazy:exclude=missing-qobject-macro
{
public:
HupThread(QCoreApplication *parent)