mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
kutils: correct loop condition in KdeEmoticons::loadTheme()
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
a0547d6810
commit
42060a4944
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue