author | harlekin <harlekin> | 2003-02-23 14:35:52 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-02-23 14:35:52 (UTC) |
commit | 93d5fdc889cd724c1f2938497b6c6460a13be2ba (patch) (unidiff) | |
tree | 3062d44ef92a47e81cebe07286691f0d2119edce | |
parent | 135c6fb1d73d322b43c8a487d40675278f3bf5f5 (diff) | |
download | opie-93d5fdc889cd724c1f2938497b6c6460a13be2ba.zip opie-93d5fdc889cd724c1f2938497b6c6460a13be2ba.tar.gz opie-93d5fdc889cd724c1f2938497b6c6460a13be2ba.tar.bz2 |
got rid of not needed includes
-rw-r--r-- | core/pim/today/plugins/mail/mailplugin.cpp | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/mailplugin.h | 4 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/mailpluginwidget.cpp | 10 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/mailpluginwidget.h | 7 |
4 files changed, 3 insertions, 20 deletions
diff --git a/core/pim/today/plugins/mail/mailplugin.cpp b/core/pim/today/plugins/mail/mailplugin.cpp index 2a2efd2..9430c30 100644 --- a/core/pim/today/plugins/mail/mailplugin.cpp +++ b/core/pim/today/plugins/mail/mailplugin.cpp | |||
@@ -1,10 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | * mailplugin.cpp | 2 | * mailplugin.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 * |
diff --git a/core/pim/today/plugins/mail/mailplugin.h b/core/pim/today/plugins/mail/mailplugin.h index a0f009b..295a88c 100644 --- a/core/pim/today/plugins/mail/mailplugin.h +++ b/core/pim/today/plugins/mail/mailplugin.h | |||
@@ -15,19 +15,15 @@ | |||
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | 17 | ||
18 | #ifndef MAIL_PLUGIN_H | 18 | #ifndef MAIL_PLUGIN_H |
19 | #define MAIL_PLUGIN_H | 19 | #define MAIL_PLUGIN_H |
20 | 20 | ||
21 | #include <qstring.h> | ||
22 | #include <qwidget.h> | 21 | #include <qwidget.h> |
23 | #include <qguardedptr.h> | 22 | #include <qguardedptr.h> |
24 | 23 | ||
25 | #include <opie/tododb.h> | ||
26 | #include <opie/oclickablelabel.h> | ||
27 | |||
28 | #include <opie/todayplugininterface.h> | 24 | #include <opie/todayplugininterface.h> |
29 | #include <opie/todayconfigwidget.h> | 25 | #include <opie/todayconfigwidget.h> |
30 | 26 | ||
31 | #include "mailpluginwidget.h" | 27 | #include "mailpluginwidget.h" |
32 | 28 | ||
33 | class MailPlugin : public TodayPluginObject { | 29 | class MailPlugin : public TodayPluginObject { |
diff --git a/core/pim/today/plugins/mail/mailpluginwidget.cpp b/core/pim/today/plugins/mail/mailpluginwidget.cpp index aad1d07..3c1d908 100644 --- a/core/pim/today/plugins/mail/mailpluginwidget.cpp +++ b/core/pim/today/plugins/mail/mailpluginwidget.cpp | |||
@@ -1,31 +1,23 @@ | |||
1 | /* | 1 | /* |
2 | * mailpluginwidget.cpp | 2 | * mailpluginwidget.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 * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | |||
18 | #include <qvaluelist.h> | ||
19 | #include <qtl.h> | ||
20 | #include <qstring.h> | ||
21 | #include <qobject.h> | ||
22 | #include <qlayout.h> | ||
23 | |||
24 | #include <qpe/config.h> | 17 | #include <qpe/config.h> |
25 | #include <qpe/timestring.h> | ||
26 | #include <qpe/qcopenvelope_qws.h> | 18 | #include <qpe/qcopenvelope_qws.h> |
27 | 19 | ||
28 | #include "mailpluginwidget.h" | 20 | #include "mailpluginwidget.h" |
29 | 21 | ||
30 | MailPluginWidget::MailPluginWidget( QWidget *parent, const char* name) | 22 | MailPluginWidget::MailPluginWidget( QWidget *parent, const char* name) |
31 | : QWidget(parent, name ) { | 23 | : QWidget(parent, name ) { |
diff --git a/core/pim/today/plugins/mail/mailpluginwidget.h b/core/pim/today/plugins/mail/mailpluginwidget.h index c678833..a3b1388 100644 --- a/core/pim/today/plugins/mail/mailpluginwidget.h +++ b/core/pim/today/plugins/mail/mailpluginwidget.h | |||
@@ -1,38 +1,33 @@ | |||
1 | /* | 1 | /* |
2 | * mailpluginwidget.h | 2 | * mailpluginwidget.h |
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 * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | |||
18 | #ifndef MAIL_PLUGIN_WIDGET_H | 17 | #ifndef MAIL_PLUGIN_WIDGET_H |
19 | #define MAIL_PLUGIN_WIDGET_H | 18 | #define MAIL_PLUGIN_WIDGET_H |
20 | 19 | ||
21 | #include <qstring.h> | ||
22 | #include <qwidget.h> | ||
23 | #include <qlayout.h> | 20 | #include <qlayout.h> |
24 | 21 | ||
25 | #include <opie/tododb.h> | ||
26 | #include <opie/oclickablelabel.h> | 22 | #include <opie/oclickablelabel.h> |
27 | 23 | ||
28 | class MailPluginWidget : public QWidget { | 24 | class MailPluginWidget : public QWidget { |
29 | 25 | ||
30 | Q_OBJECT | 26 | Q_OBJECT |
31 | 27 | ||
32 | |||
33 | public: | 28 | public: |
34 | MailPluginWidget( QWidget *parent, const char *name ); | 29 | MailPluginWidget( QWidget *parent, const char *name ); |
35 | ~MailPluginWidget(); | 30 | ~MailPluginWidget(); |
36 | 31 | ||
37 | void refresh(); | 32 | void refresh(); |
38 | 33 | ||