author | harlekin <harlekin> | 2003-04-06 16:36:49 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-04-06 16:36:49 (UTC) |
commit | 71d093f94b031e2c14c7051a2db998e14e3c747c (patch) (unidiff) | |
tree | 5acc9ca6c20026f2338b82672b2210fba25f006e | |
parent | 053eab1afe69f91e591cc43f01f3c155096d3a30 (diff) | |
download | opie-71d093f94b031e2c14c7051a2db998e14e3c747c.zip opie-71d093f94b031e2c14c7051a2db998e14e3c747c.tar.gz opie-71d093f94b031e2c14c7051a2db998e14e3c747c.tar.bz2 |
status has an icon again .-), closes #806
-rw-r--r-- | core/pim/todo/otaskeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp index 68b315d..e26d5e4 100644 --- a/core/pim/todo/otaskeditor.cpp +++ b/core/pim/todo/otaskeditor.cpp | |||
@@ -51,33 +51,33 @@ void OTaskEditor::load(const OTodo& 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 | } |
53 | void OTaskEditor::init() { | 53 | void OTaskEditor::init() { |
54 | setCaption("Task Editor"); | 54 | setCaption("Task Editor"); |
55 | 55 | ||
56 | QVBoxLayout* layo = new QVBoxLayout( this ); | 56 | QVBoxLayout* layo = new QVBoxLayout( this ); |
57 | m_tab = new OTabWidget( this ); | 57 | m_tab = new OTabWidget( this ); |
58 | layo->addWidget( m_tab ); | 58 | layo->addWidget( m_tab ); |
59 | 59 | ||
60 | /* | 60 | /* |
61 | * Add the Widgets | 61 | * Add the Widgets |
62 | */ | 62 | */ |
63 | m_overView = new TaskEditorOverView( m_tab ); | 63 | m_overView = new TaskEditorOverView( m_tab ); |
64 | m_tab->addTab( m_overView, "todo/info", tr("Information") ); | 64 | m_tab->addTab( m_overView, "todo/info", tr("Information") ); |
65 | 65 | ||
66 | m_stat = new TaskEditorStatus( m_tab ); | 66 | m_stat = new TaskEditorStatus( m_tab ); |
67 | m_tab->addTab( m_stat, "TodoList", tr("Status") ); | 67 | m_tab->addTab( m_stat, "todo/TodoList", tr("Status") ); |
68 | 68 | ||
69 | m_alarm = new TaskEditorAlarms( m_tab ); | 69 | m_alarm = new TaskEditorAlarms( m_tab ); |
70 | m_tab->addTab( m_alarm, "todo/alarm", tr("Alarms") ); | 70 | m_tab->addTab( m_alarm, "todo/alarm", tr("Alarms") ); |
71 | 71 | ||
72 | m_remind = new TaskEditorAlarms( m_tab ); | 72 | m_remind = new TaskEditorAlarms( m_tab ); |
73 | m_tab->addTab( m_remind, "todo/reminder", tr("Reminders") ); | 73 | m_tab->addTab( m_remind, "todo/reminder", tr("Reminders") ); |
74 | 74 | ||
75 | QLabel* lbl = new QLabel( m_tab ); | 75 | QLabel* lbl = new QLabel( m_tab ); |
76 | lbl->setText( tr("X-Ref") ); | 76 | lbl->setText( tr("X-Ref") ); |
77 | m_tab->addTab( lbl, "todo/xref", tr("X-Ref") ); | 77 | m_tab->addTab( lbl, "todo/xref", tr("X-Ref") ); |
78 | 78 | ||
79 | m_rec = new ORecurranceWidget( true, QDate::currentDate(), this ); | 79 | m_rec = new ORecurranceWidget( true, QDate::currentDate(), this ); |
80 | m_tab->addTab( m_rec, "repeat", tr("Recurrence") ); | 80 | m_tab->addTab( m_rec, "repeat", tr("Recurrence") ); |
81 | 81 | ||
82 | 82 | ||
83 | /* signal and slots */ | 83 | /* signal and slots */ |