summaryrefslogtreecommitdiff
path: root/core/pim/todo/todotemplatemanager.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/todotemplatemanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/todotemplatemanager.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/pim/todo/todotemplatemanager.cpp b/core/pim/todo/todotemplatemanager.cpp
index eeac51b..0b20d5a 100644
--- a/core/pim/todo/todotemplatemanager.cpp
+++ b/core/pim/todo/todotemplatemanager.cpp
@@ -1,2 +1,3 @@
+#include <opie2/odebug.h>
#include <opie2/otodoaccess.h>
#include <opie2/otodoaccessxml.h>
@@ -36,5 +37,5 @@ void TemplateManager::load() {
}
void TemplateManager::save() {
- qWarning("Saving!!!!");
+ Opie::Core::owarn << "Saving!!!!" << oendl;
Config conf("todolist_templates");
@@ -50,5 +51,5 @@ void TemplateManager::save() {
OPimTodo ev = it.data();
conf.setGroup( QString::number( ev.uid() ) );
- qWarning("Name" + it.key() );
+ Opie::Core::owarn << "Name " << it.key() << oendl;
conf.writeEntry("Name", it.key() );
db.add( ev );
@@ -58,5 +59,5 @@ void TemplateManager::save() {
void TemplateManager::addEvent( const QString& str,
const OPimTodo& ev) {
- qWarning("AddEvent"+ str );
+ Opie::Core::owarn << "AddEvent " << str << oendl;
OPimTodo todo = ev;
if( ev.uid() == 0 )