summaryrefslogtreecommitdiff
path: root/core/pim/todo/taskeditoradvancedimpl.h
authordrw <drw>2002-12-27 15:13:20 (UTC)
committer drw <drw>2002-12-27 15:13:20 (UTC)
commite6aaae74f39e3aed4dc3c186c56f92cef8c7da09 (patch) (side-by-side diff)
treece7245011b8613521759f44a03f692b1cfa69719 /core/pim/todo/taskeditoradvancedimpl.h
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/taskeditoradvancedimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/taskeditoradvancedimpl.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/core/pim/todo/taskeditoradvancedimpl.h b/core/pim/todo/taskeditoradvancedimpl.h
deleted file mode 100644
index 215d8cb..0000000
--- a/core/pim/todo/taskeditoradvancedimpl.h
+++ b/dev/null
@@ -1,37 +0,0 @@
-#ifndef OPIE_TASK_EDITOR_ADVANCED_IMPL_H
-#define OPIE_TASK_EDITOR_ADVANCED_IMPL_H
-
-#include "taskeditoradvanced.h"
-
-/**
- * This is the implementation of the Opie Task Editor Advanced tab
- * it features the State!
- * MaintainerMode
- * Description
- */
-class QMultiLineEdit;
-class OTodo;
-class TaskEditorAdvancedImpl : public TaskEditorAdvanced {
- Q_OBJECT
-public:
- TaskEditorAdvancedImpl( QWidget* parent = 0, const char* name = 0 );
- ~TaskEditorAdvancedImpl();
-
- /*
- * I could have a struct which returns a QWidget*
- * load and save to a OTodo
- * and use multiple inheretence with all other widgets
- * and then simply iterate over the list of structs
- * this way I could easily have plugins for the whole editor....
- * but I do not do it -zecke
- */
- void load( const OTodo& );
- void save( OTodo& );
-
-private:
- void initUI();
- QMultiLineEdit* m_edit;
-};
-
-
-#endif