summaryrefslogtreecommitdiff
path: root/library/backend
authorzecke <zecke>2002-09-10 13:11:25 (UTC)
committer zecke <zecke>2002-09-10 13:11:25 (UTC)
commita73774e8ab1d14c76f17c854c6b6cdf801abfe82 (patch) (side-by-side diff)
tree27b0ddb41a40133bfaad34781ce69890615e4acc /library/backend
parent8064c0e86eed8a48c2c7745195bf991b1d83f504 (diff)
downloadopie-a73774e8ab1d14c76f17c854c6b6cdf801abfe82.zip
opie-a73774e8ab1d14c76f17c854c6b6cdf801abfe82.tar.gz
opie-a73774e8ab1d14c76f17c854c6b6cdf801abfe82.tar.bz2
Fix inline for Event::start
Diffstat (limited to 'library/backend') (more/less context) (ignore whitespace changes)
-rw-r--r--library/backend/event.cpp9
-rw-r--r--library/backend/event.h8
2 files changed, 11 insertions, 6 deletions
diff --git a/library/backend/event.cpp b/library/backend/event.cpp
index 7110717..8f3f780 100644
--- a/library/backend/event.cpp
+++ b/library/backend/event.cpp
@@ -426,3 +426,3 @@ QMap<int, QString> Event::toMap() const
m.insert( DatebookDescription, description() );
- if ( !location().isEmpty() )
+ if ( !location().isEmpty() )
m.insert ( Location, location() );
@@ -587,3 +587,5 @@ Event::Type Event::type() const
}
-
+QDateTime Event::start() const {
+ return start( TRUE );
+}
/*!
@@ -603,2 +605,5 @@ QDateTime Event::start( bool actual ) const
+QDateTime Event::end() const {
+ return end( TRUE );
+}
/*!
diff --git a/library/backend/event.h b/library/backend/event.h
index 7fe41a5..2b275a4 100644
--- a/library/backend/event.h
+++ b/library/backend/event.h
@@ -270,5 +270,5 @@ inline void Event::setAllDay(bool enable)
setType(AllDay);
- else
+ else
setType(Normal);
-};
+};
@@ -343,3 +343,3 @@ inline void Event::setRepeatOnWeekDay(int day, bool enable)
}
-
+/*
inline QDateTime Event::start( ) const
@@ -353,3 +353,3 @@ inline QDateTime Event::end( ) const
}
-
+*/
#ifdef PALMTOPCENTER