[clazy] Properly emit signals

Test Plan: Receive a file

Reviewers: #kde_connect, albertvaka

Reviewed By: #kde_connect, albertvaka

Subscribers: kdeconnect

Tags: #kde_connect

Differential Revision: https://phabricator.kde.org/D17166
This commit is contained in:
Nicolas Fella 2018-11-26 01:53:55 +01:00
parent d74edc33b9
commit ded463eb49
2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@ void FileTransferJob::start()
void FileTransferJob::doStart()
{
description(this, i18n("Receiving file over KDE Connect"),
Q_EMIT description(this, i18n("Receiving file over KDE Connect"),
{ i18nc("File transfer origin", "From"), m_from }
);
@ -82,7 +82,7 @@ void FileTransferJob::startTransfer()
return;
setProcessedAmount(Bytes, 0);
description(this, i18n("Receiving file over KDE Connect"),
Q_EMIT description(this, i18n("Receiving file over KDE Connect"),
{ i18nc("File transfer origin", "From"), m_from },
{ i18nc("File transfer destination", "To"), m_destination.toLocalFile() });

View file

@ -165,7 +165,7 @@ void RunCommandConfig::insertRow(int i, const QString& name, const QString& comm
void RunCommandConfig::onDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight)
{
changed(true);
Q_EMIT changed(true);
Q_UNUSED(topLeft);
if (bottomRight.row() == m_entriesModel->rowCount() - 1) {
//TODO check both entries are still empty