1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-01 01:17:51 +03:00

Fix minor typo

This commit is contained in:
Yuri Chornoivan 2019-07-16 08:59:13 +03:00 committed by Michail Vourlakos
parent 9a10cd1e26
commit 74f5d881bc

View File

@ -728,7 +728,7 @@ bool Storage::layoutIsBroken(QStringList &errors) const
for (int i = 0; i < ids.count(); ++i) {
for (int j = i + 1; j < ids.count(); ++j) {
if (ids[i] == ids[j]) {
QString errorStr = i18n("Differrent applets with same id ::: ") + ids[i];
QString errorStr = i18n("Different applets with same id ::: ") + ids[i];
qDebug() << "Error: " << errorStr;
errors << errorStr;
}