diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2015-08-07 17:06:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2015-08-07 17:06:29 +0900 |
commit | c036d97d35d25c4511d9569d40c1de07dab96bb6 (patch) | |
tree | abb9a42ff29a9c144450b6b6a5aafb851cbdc69c /kalarm/alarmcalendar.cpp | |
parent | 74a91e13153f0696bb62baa78dac119f3a2e9fca (diff) | |
download | tdepim-c036d97d35d25c4511d9569d40c1de07dab96bb6.tar.gz tdepim-c036d97d35d25c4511d9569d40c1de07dab96bb6.zip |
Fixed KAlarm building warnings. Minor style patch up. Fixed possible error in treating deferred evens (see kalarm/alarmevent.cpp:1739).
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kalarm/alarmcalendar.cpp')
-rw-r--r-- | kalarm/alarmcalendar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/alarmcalendar.cpp b/kalarm/alarmcalendar.cpp index 8d11854bd..d0150d00e 100644 --- a/kalarm/alarmcalendar.cpp +++ b/kalarm/alarmcalendar.cpp @@ -373,7 +373,7 @@ bool AlarmCalendar::reload() */ bool AlarmCalendar::saveCal(const TQString& newFile) { - if (!mCalendar || !mOpen && newFile.isNull()) + if (!mCalendar || (!mOpen && newFile.isNull())) return false; kdDebug(5950) << "AlarmCalendar::saveCal(\"" << newFile << "\", " << mType << ")\n"; @@ -638,7 +638,7 @@ void AlarmCalendar::setPurgeDays(int days) mPurgeDays = days; if (mPurgeDays <= 0) StartOfDayTimer::disconnect(this); - if (oldDays < 0 || days >= 0 && days < oldDays) + if (oldDays < 0 || (days >= 0 && days < oldDays)) { // Alarms are now being kept for less long, so purge them if (open()) |