-rw-r--r-- | core/pim/todo/otaskeditor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp index 1a68eb5..8b261de 100644 --- a/core/pim/todo/otaskeditor.cpp +++ b/core/pim/todo/otaskeditor.cpp | |||
@@ -58,12 +58,13 @@ void OTaskEditor::init() { | |||
58 | */ | 58 | */ |
59 | m_overView = new TaskEditorOverViewImpl(m_tab ); | 59 | m_overView = new TaskEditorOverViewImpl(m_tab ); |
60 | m_tab->addTab( m_overView, QString::null, tr("Overview") ); | 60 | m_tab->addTab( m_overView, QString::null, tr("Overview") ); |
61 | 61 | ||
62 | m_adv = new TaskEditorAdvanced( m_tab ); | 62 | m_adv = new TaskEditorAdvanced( m_tab ); |
63 | m_line = new QMultiLineEdit(m_adv ); | 63 | m_line = new QMultiLineEdit(m_adv ); |
64 | m_line->setWordWrap( QMultiLineEdit::WidgetWidth ); | ||
64 | QLabel* label = new QLabel(m_adv ); | 65 | QLabel* label = new QLabel(m_adv ); |
65 | label->setText( tr("Description") ); | 66 | label->setText( tr("Description") ); |
66 | ((QGridLayout*) m_adv->layout() )->addWidget( label,3, 0 ); | 67 | ((QGridLayout*) m_adv->layout() )->addWidget( label,3, 0 ); |
67 | ((QGridLayout*) m_adv->layout())->addWidget( m_line,4,0 ); | 68 | ((QGridLayout*) m_adv->layout())->addWidget( m_line,4,0 ); |
68 | m_tab->addTab( m_adv, QString::null, tr("Advanced") ); | 69 | m_tab->addTab( m_adv, QString::null, tr("Advanced") ); |
69 | 70 | ||