summaryrefslogtreecommitdiff
path: root/libopie/pim/test/oevent_test.cpp
authorzecke <zecke>2003-02-22 18:51:44 (UTC)
committer zecke <zecke>2003-02-22 18:51:44 (UTC)
commit7b04887e382227c80c8985495f01dad2b1890719 (patch) (side-by-side diff)
tree31db88fd0519c7f03ff05560f21ba69256765d5e /libopie/pim/test/oevent_test.cpp
parent2424bcd292444b3a03c9b92dbc7f5b392c355755 (diff)
downloadopie-7b04887e382227c80c8985495f01dad2b1890719.zip
opie-7b04887e382227c80c8985495f01dad2b1890719.tar.gz
opie-7b04887e382227c80c8985495f01dad2b1890719.tar.bz2
Fix saving
remove the transport medium from the opimmainwindow
Diffstat (limited to 'libopie/pim/test/oevent_test.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie/pim/test/oevent_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libopie/pim/test/oevent_test.cpp b/libopie/pim/test/oevent_test.cpp
index d83ee0b..9f16911 100644
--- a/libopie/pim/test/oevent_test.cpp
+++ b/libopie/pim/test/oevent_test.cpp
@@ -14,7 +14,8 @@ int main(int argc, char* argv ) {
OEvent ev = (*it);
qWarning("Summary: %s",ev.description().latin1() );
qWarning("Start: %s End: %s",ev.startDateTime().toString().latin1(), ev.endDateTime().toString().latin1() );
- qWarning("All Day: %d",ev.isAllDay() );
+ qWarning("All Day: %d Recurrence: %d",ev.isAllDay(), ev.hasRecurrence() );
+ qWarning("UID %d", ev.uid() );
}
QDate date1(2003,02,01 );
@@ -28,6 +29,7 @@ int main(int argc, char* argv ) {
qWarning("Summary: %s", ef.description().latin1() );
qWarning("Date: %s", ef.date().toString().latin1() );
}
+ acc.save();
return 0;
}