summaryrefslogtreecommitdiff
path: root/core/pim/today/today.cpp
authorzecke <zecke>2004-03-14 20:15:38 (UTC)
committer zecke <zecke>2004-03-14 20:15:38 (UTC)
commit5064995ccd7a57edd2e41a2908b6402ff25995c4 (patch) (unidiff)
tree156685fc97a3fe2002b6f4250c7217b9c250f390 /core/pim/today/today.cpp
parent0d79c003839718ae70b3b997162044abd5c26bf6 (diff)
downloadopie-5064995ccd7a57edd2e41a2908b6402ff25995c4.zip
opie-5064995ccd7a57edd2e41a2908b6402ff25995c4.tar.gz
opie-5064995ccd7a57edd2e41a2908b6402ff25995c4.tar.bz2
More stuff cvs did not commit the first time
Diffstat (limited to 'core/pim/today/today.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 812f8b5..ebcd2dd 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -19,24 +19,25 @@
19#include "today.h" 19#include "today.h"
20 20
21#include <qpe/config.h> 21#include <qpe/config.h>
22#include <qpe/qcopenvelope_qws.h> 22#include <qpe/qcopenvelope_qws.h>
23#include <qpe/resource.h> 23#include <qpe/resource.h>
24#include <qpe/qpeapplication.h> 24#include <qpe/qpeapplication.h>
25#include <qpe/contact.h> 25#include <qpe/contact.h>
26 26
27#include <qdir.h> 27#include <qdir.h>
28#include <qtimer.h> 28#include <qtimer.h>
29#include <qwhatsthis.h> 29#include <qwhatsthis.h>
30 30
31using namespace Opie::Ui;
31struct TodayPlugin { 32struct TodayPlugin {
32 TodayPlugin() : library( 0 ), iface( 0 ), guiPart( 0 ), guiBox( 0 ) {} 33 TodayPlugin() : library( 0 ), iface( 0 ), guiPart( 0 ), guiBox( 0 ) {}
33 QLibrary *library; 34 QLibrary *library;
34 QInterfacePtr<TodayPluginInterface> iface; 35 QInterfacePtr<TodayPluginInterface> iface;
35 TodayPluginObject *guiPart; 36 TodayPluginObject *guiPart;
36 QWidget *guiBox; 37 QWidget *guiBox;
37 QString name; 38 QString name;
38 bool active; 39 bool active;
39 bool excludeRefresh; 40 bool excludeRefresh;
40 int pos; 41 int pos;
41}; 42};
42 43