Don't use empty QStringLiteral
This commit is contained in:
parent
b7768ca29f
commit
5c268466c3
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ void CompositeUploadJob::slotResult(KJob *job) {
|
||||||
startNextSubJob();
|
startNextSubJob();
|
||||||
} else {
|
} else {
|
||||||
Q_EMIT description(this, i18n("Finished sending to %1", Daemon::instance()->getDevice(this->m_deviceId)->name()),
|
Q_EMIT description(this, i18n("Finished sending to %1", Daemon::instance()->getDevice(this->m_deviceId)->name()),
|
||||||
{ QStringLiteral(""), i18np("Sent 1 file", "Sent %1 files", m_totalJobs) }
|
{ QString(), i18np("Sent 1 file", "Sent %1 files", m_totalJobs) }
|
||||||
);
|
);
|
||||||
emitResult();
|
emitResult();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue