summaryrefslogtreecommitdiffstats
path: root/kalarm/find.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kalarm/find.cpp')
-rw-r--r--kalarm/find.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kalarm/find.cpp b/kalarm/find.cpp
index 9a469e57..8e35cbe9 100644
--- a/kalarm/find.cpp
+++ b/kalarm/find.cpp
@@ -1,5 +1,5 @@
/*
- * find.cpp - search facility
+ * find.cpp - search facility
* Program: kalarm
* Copyright © 2005,2006,2008 by David Jarvie <djarvie@kde.org>
*
@@ -298,8 +298,8 @@ void Find::findNext(bool forward, bool sort, bool checkEnd, bool fromCurrent)
last = true; // we've wrapped round and reached the starting alarm again
fromCurrent = false;
bool live = !event.expired();
- if (live && !(mOptions & FIND_LIVE)
- || !live && !(mOptions & FIND_EXPIRED))
+ if ((live && !(mOptions & FIND_LIVE))
+ || (!live && !(mOptions & FIND_EXPIRED)))
continue; // we're not searching this type of alarm
switch (event.action())
{