summaryrefslogtreecommitdiff
path: root/library/backend
authorzecke <zecke>2003-02-19 14:33:49 (UTC)
committer zecke <zecke>2003-02-19 14:33:49 (UTC)
commit5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db (patch) (side-by-side diff)
tree46fad390578dbfe31dbb09c74bec1a453214531c /library/backend
parentbd6e39ba0c38070d07c76b67a98d2e3ab3f84cb8 (diff)
downloadopie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.zip
opie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.tar.gz
opie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.tar.bz2
time_t a long in our case may be < 0
This unfscks birthdays which occur in 1944 and other prior to starting of unix time
Diffstat (limited to 'library/backend') (more/less context) (show whitespace changes)
-rw-r--r--library/backend/event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/backend/event.cpp b/library/backend/event.cpp
index eb238a4..0003fe9 100644
--- a/library/backend/event.cpp
+++ b/library/backend/event.cpp
@@ -550,116 +550,116 @@ void Event::setRepeat( bool b, const RepeatPattern &p )
}
/*!
Sets the notes for the event to \a n.
*/
void Event::setNotes( const QString &n )
{
note = n;
}
/*!
Returns the description of the event.
*/
const QString &Event::description() const
{
return descript;
}
/*!
Returns the location of the event.
*/
const QString &Event::location() const
{
return locat;
}
// QString Event::category() const
// {
// return categ;
// }
/*!
\internal
*/
Event::Type Event::type() const
{
return typ;
}
/*
QDateTime Event::start() const {
return start( TRUE );
}
*/
/*!
\internal
*/
QDateTime Event::start( bool actual ) const
{
- QDateTime dt = (startUTC > 0) ? TimeConversion::fromUTC( startUTC ) : QDateTime::currentDateTime();
+ QDateTime dt = TimeConversion::fromUTC( startUTC );
if ( actual && typ == AllDay ) {
QTime t = dt.time();
t.setHMS( 0, 0, 0 );
dt.setTime( t );
}
return dt;
}
/*
QDateTime Event::end() const {
return end( TRUE );
}
*/
/*!
\internal
*/
QDateTime Event::end( bool actual ) const
{
- QDateTime dt = (endUTC > 0) ? TimeConversion::fromUTC( endUTC ) : QDateTime::currentDateTime();
+ QDateTime dt = TimeConversion::fromUTC( endUTC );
if ( actual && typ == AllDay ) {
QTime t = dt.time();
t.setHMS( 23, 59, 59 );
dt.setTime( t );
}
return dt;
}
/*!
\internal
*/
const QString &Event::timeZone() const
{
return tz;
}
/*!
\internal
*/
bool Event::hasAlarm() const
{
return hAlarm;
}
/*!
\internal
*/
int Event::alarmTime() const
{
return aMinutes;
}
/*!
Returns the sound type for the alarm of this event.
*/
Event::SoundTypeChoice Event::alarmSound() const
{
return aSound;
}
/*!
\internal
*/
bool Event::hasRepeat() const
{
return doRepeat();
}