From 91706a22a1aae05488c74fb0a469287f70a72cc5 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Sat, 20 Nov 2010 05:44:47 +0000 Subject: [PATCH] stylistic consistency: "else if" when that's what it is doing svn path=/trunk/KDE/kdelibs/; revision=1198890 --- popupapplet.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/popupapplet.cpp b/popupapplet.cpp index 2b9d087e7..80908c8a7 100644 --- a/popupapplet.cpp +++ b/popupapplet.cpp @@ -583,10 +583,8 @@ void PopupApplet::showPopup(uint popupDuration) } d->timer->start(popupDuration); - } else { - if (d->timer) { - d->timer->stop(); - } + } else if (d->timer) { + d->timer->stop(); } } }