summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoeditor.cpp
authorzecke <zecke>2003-02-14 18:23:40 (UTC)
committer zecke <zecke>2003-02-14 18:23:40 (UTC)
commitfc117979a54fca11e591395b130cfef307deb66f (patch) (side-by-side diff)
treec2aa7bb2e46a1506b9a8332c8e026aa04b550d2f /core/pim/todo/todoeditor.cpp
parent1f5bb42810965f86ae02fea7cb9df20cbe9aa22f (diff)
downloadopie-fc117979a54fca11e591395b130cfef307deb66f.zip
opie-fc117979a54fca11e591395b130cfef307deb66f.tar.gz
opie-fc117979a54fca11e591395b130cfef307deb66f.tar.bz2
Remove the #ifdef for QWS
Fix saving of templates The backends want's to load before it saves... Oliver now things should work again
Diffstat (limited to 'core/pim/todo/todoeditor.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/todoeditor.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/pim/todo/todoeditor.cpp b/core/pim/todo/todoeditor.cpp
index 5aa7097..c204325 100644
--- a/core/pim/todo/todoeditor.cpp
+++ b/core/pim/todo/todoeditor.cpp
@@ -20,9 +20,7 @@ OTodo Editor::newTodo( int cur,
e->init( cur );
-#if defined(Q_WS_QWS) || defined(_WS_QWS_)
e->showMaximized();
-#endif
int ret = e->exec();
if ( QDialog::Accepted == ret ) {
@@ -43,9 +41,7 @@ OTodo Editor::edit( QWidget *,
e->init( todo );
e->setCaption( QObject::tr( "Edit Task" ) );
-#if defined(Q_WS_QWS) || defined(_WS_QWS_)
e->showMaximized();
-#endif
int ret = e->exec();
OTodo ev = e->todo();