summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoentryimpl.cpp
authorzecke <zecke>2002-06-16 16:55:40 (UTC)
committer zecke <zecke>2002-06-16 16:55:40 (UTC)
commitf63c4f952daeeda9787b8b700a9d50f20cdff88c (patch) (unidiff)
treefee143b48834b24ab56f7373571c8ef94f6314f3 /core/pim/todo/todoentryimpl.cpp
parent98f3588c957217c720779945a02bc01a164bfaa5 (diff)
downloadopie-f63c4f952daeeda9787b8b700a9d50f20cdff88c.zip
opie-f63c4f952daeeda9787b8b700a9d50f20cdff88c.tar.gz
opie-f63c4f952daeeda9787b8b700a9d50f20cdff88c.tar.bz2
I dunno
Diffstat (limited to 'core/pim/todo/todoentryimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/todoentryimpl.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/pim/todo/todoentryimpl.cpp b/core/pim/todo/todoentryimpl.cpp
index f8e2f4d..dd01130 100644
--- a/core/pim/todo/todoentryimpl.cpp
+++ b/core/pim/todo/todoentryimpl.cpp
@@ -21,12 +21,14 @@
21 21
22#include "todoentryimpl.h" 22#include "todoentryimpl.h"
23 23
24#include <opie/oclickablelabel.h>
24#include <opie/todoevent.h> 25#include <opie/todoevent.h>
25#include <opie/tododb.h> 26#include <opie/tododb.h>
26 27
27#include <qpe/categoryselect.h> 28#include <qpe/categoryselect.h>
28#include <qpe/datebookmonth.h> 29#include <qpe/datebookmonth.h>
29#include <qpe/global.h> 30#include <qpe/global.h>
31#include <qpe/resource.h>
30#include <qpe/imageedit.h> 32#include <qpe/imageedit.h>
31#include <qpe/timestring.h> 33#include <qpe/timestring.h>
32#include <qpe/palmtoprecord.h> 34#include <qpe/palmtoprecord.h>
@@ -99,6 +101,7 @@ void NewTaskDialog::init()
99 101
100 buttonDate->setText( TimeString::longDateString( date ) ); 102 buttonDate->setText( TimeString::longDateString( date ) );
101 picker->setDate( date.year(), date.month(), date.day() ); 103 picker->setDate( date.year(), date.month(), date.day() );
104 lblDown->setPixmap(Resource::loadPixmap("down") );
102} 105}
103 106
104/* 107/*
@@ -140,7 +143,11 @@ ToDoEvent NewTaskDialog::todoEntry()
140 todo.setProgress( text.remove( text.length()-1, 1 ).toUShort() ); 143 todo.setProgress( text.remove( text.length()-1, 1 ).toUShort() );
141 return todo; 144 return todo;
142} 145}
143 146void NewTaskDialog::slotCopy()
147{
148 txtTodo->clear();
149 txtTodo->setText( lneSum->text() );
150}
144 151
145/*! 152/*!
146 153