s/emit/Q_EMIT

This commit is contained in:
Carl Schwan
2020-11-03 12:03:06 +01:00
parent 4af7c14110
commit ce69506cf6
15 changed files with 59 additions and 59 deletions

View File

@@ -61,7 +61,7 @@ public:
if (quitOnLastWindowClosed() != value) {
QApplication::setQuitOnLastWindowClosed(value);
emit quitOnLastWindowClosedChanged();
Q_EMIT quitOnLastWindowClosedChanged();
}
}
@@ -80,7 +80,7 @@ public:
return;
}
m_busy = busy;
emit busyChanged();
Q_EMIT busyChanged();
}
Connection *connection() const
@@ -96,7 +96,7 @@ public:
if (conn == m_connection)
return;
m_connection = conn;
emit connectionChanged();
Q_EMIT connectionChanged();
}
private: