kutils: correct loop condition in KdeEmoticons::loadTheme()

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-01-06 05:12:02 +02:00
parent a0547d6810
commit 42060a4944

View file

@ -158,9 +158,9 @@ bool KdeEmoticons::loadTheme(const QString &path)
QStringList sl;
#ifdef QT_KATIE
for (int k = 0; i < snl.length(); k++ )
for (int k = 0; k < snl.length(); k++ )
#else
for (uint k = 0; i < snl.length(); k++ )
for (uint k = 0; k < snl.length(); k++ )
#endif
{
QDomElement sde = snl.item(k).toElement();