summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todopluginwidget.cpp
Unidiff
Diffstat (limited to 'core/pim/today/plugins/todolist/todopluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginwidget.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.cpp b/core/pim/today/plugins/todolist/todopluginwidget.cpp
index 3242dac..15081ec 100644
--- a/core/pim/today/plugins/todolist/todopluginwidget.cpp
+++ b/core/pim/today/plugins/todolist/todopluginwidget.cpp
@@ -1,10 +1,10 @@
1/* 1/*
2 * todopluginwidget.cpp 2 * todopluginwidget.cpp
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002, 2003 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
@@ -13,21 +13,13 @@
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#include "todopluginwidget.h" 17#include "todopluginwidget.h"
18 18
19#include <qvaluelist.h>
20#include <qtl.h>
21#include <qstring.h>
22#include <qscrollview.h>
23#include <qobject.h>
24#include <qlayout.h>
25
26#include <qpe/config.h> 19#include <qpe/config.h>
27#include <qpe/timestring.h>
28#include <qpe/qcopenvelope_qws.h> 20#include <qpe/qcopenvelope_qws.h>
29 21
30TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name ) 22TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name )
31 : QWidget( parent, name ) { 23 : QWidget( parent, name ) {
32 24
33 todo = 0l; 25 todo = 0l;
@@ -43,13 +35,12 @@ TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name )
43 if ( layoutTodo ) { 35 if ( layoutTodo ) {
44 delete layoutTodo; 36 delete layoutTodo;
45 } 37 }
46 layoutTodo = new QVBoxLayout( this ); 38 layoutTodo = new QVBoxLayout( this );
47 layoutTodo->setAutoAdd( true ); 39 layoutTodo->setAutoAdd( true );
48 40
49
50 if ( todoLabel ) { 41 if ( todoLabel ) {
51 delete todoLabel; 42 delete todoLabel;
52 } 43 }
53 todoLabel = new OClickableLabel( this ); 44 todoLabel = new OClickableLabel( this );
54 45
55 connect( todoLabel, SIGNAL( clicked() ), this, SLOT( startTodolist() ) ); 46 connect( todoLabel, SIGNAL( clicked() ), this, SLOT( startTodolist() ) );