summaryrefslogtreecommitdiff
path: root/core/pim/todo/taskeditoroverview.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/taskeditoroverview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/taskeditoroverview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/todo/taskeditoroverview.cpp b/core/pim/todo/taskeditoroverview.cpp
index 415dcf2..294acb9 100644
--- a/core/pim/todo/taskeditoroverview.cpp
+++ b/core/pim/todo/taskeditoroverview.cpp
@@ -25,13 +25,13 @@
Boston, MA 02111-1307, USA.
*/
#include "taskeditoroverview.h"
-#include <opie/orecur.h>
+//#include <opie2/opimrecurrence.h>
#include <qpe/categoryselect.h>
#include <qpe/datebookmonth.h>
#include <qpe/resource.h>
#include <qcheckbox.h>
@@ -124,13 +124,13 @@ TaskEditorOverView::TaskEditorOverView( QWidget* parent, const char* name, WFla
}
TaskEditorOverView::~TaskEditorOverView()
{
}
-void TaskEditorOverView::load( const OTodo& todo )
+void TaskEditorOverView::load( const OPimTodo& todo )
{
// Description
cmbDesc->insertItem( todo.summary(), 0 );
cmbDesc->setCurrentItem( 0 );
// Priority
@@ -145,13 +145,13 @@ void TaskEditorOverView::load( const OTodo& todo )
// Notes
mleNotes->setText( todo.description() );
}
-void TaskEditorOverView::save( OTodo &todo )
+void TaskEditorOverView::save( OPimTodo &todo )
{
// Description
todo.setSummary( cmbDesc->currentText() );
// Priority
todo.setPriority( cmbPriority->currentItem() + 1 );