stylistic consistency: "else if" when that's what it is doing

svn path=/trunk/KDE/kdelibs/; revision=1198890
This commit is contained in:
Aaron J. Seigo 2010-11-20 05:44:47 +00:00
parent 691315952e
commit 91706a22a1

View File

@ -583,13 +583,11 @@ void PopupApplet::showPopup(uint popupDuration)
}
d->timer->start(popupDuration);
} else {
if (d->timer) {
} else if (d->timer) {
d->timer->stop();
}
}
}
}
void PopupApplet::hidePopup()
{