summaryrefslogtreecommitdiff
path: root/core/pim/todo/otaskeditor.cpp
authordrw <drw>2002-12-27 15:13:20 (UTC)
committer drw <drw>2002-12-27 15:13:20 (UTC)
commite6aaae74f39e3aed4dc3c186c56f92cef8c7da09 (patch) (unidiff)
treece7245011b8613521759f44a03f692b1cfa69719 /core/pim/todo/otaskeditor.cpp
parentc1dcf67a3c213aa062107c5c3de8413b66ac4b29 (diff)
downloadopie-e6aaae74f39e3aed4dc3c186c56f92cef8c7da09.zip
opie-e6aaae74f39e3aed4dc3c186c56f92cef8c7da09.tar.gz
opie-e6aaae74f39e3aed4dc3c186c56f92cef8c7da09.tar.bz2
Clean-up of advanced tab in edit task dialog. Next is QWhatsThis for everything.
Diffstat (limited to 'core/pim/todo/otaskeditor.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/otaskeditor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp
index e6ebf60..bde25ef 100644
--- a/core/pim/todo/otaskeditor.cpp
+++ b/core/pim/todo/otaskeditor.cpp
@@ -7,5 +7,5 @@
7 7
8#include "taskeditoroverview.h" 8#include "taskeditoroverview.h"
9#include "taskeditoradvancedimpl.h" 9#include "taskeditoradvanced.h"
10#include "taskeditoralarms.h" 10#include "taskeditoralarms.h"
11 11
@@ -41,5 +41,5 @@ OTodo OTaskEditor::todo()const{
41 to.setUid(m_uid ); 41 to.setUid(m_uid );
42 m_overView->save( to ); 42 m_overView->save( to );
43 //m_adv->save( to ); 43 m_adv->save( to );
44 to.setRecurrence( m_rec->recurrence() ); 44 to.setRecurrence( m_rec->recurrence() );
45 45
@@ -48,5 +48,5 @@ OTodo OTaskEditor::todo()const{
48void OTaskEditor::load(const OTodo& to) { 48void OTaskEditor::load(const OTodo& to) {
49 m_overView->load( to ); 49 m_overView->load( to );
50 //m_adv->load( to ); 50 m_adv->load( to );
51 m_rec->setRecurrence( to.recurrence(), to.hasDueDate() ? to.dueDate() : QDate::currentDate() ); 51 m_rec->setRecurrence( to.recurrence(), to.hasDueDate() ? to.dueDate() : QDate::currentDate() );
52} 52}
@@ -64,5 +64,5 @@ void OTaskEditor::init() {
64 m_tab->addTab( m_overView, "TodoList", tr("Overview") ); 64 m_tab->addTab( m_overView, "TodoList", tr("Overview") );
65 65
66 m_adv = new TaskEditorAdvancedImpl( m_tab ); 66 m_adv = new TaskEditorAdvanced( m_tab );
67 m_tab->addTab( m_adv, "todo/advanced", tr("Advanced") ); 67 m_tab->addTab( m_adv, "todo/advanced", tr("Advanced") );
68 68