summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/composerbase.cpp6
-rw-r--r--noncore/unsupported/mail2/composerbase.h4
-rw-r--r--noncore/unsupported/mail2/mainwindowbase.cpp4
-rw-r--r--noncore/unsupported/mail2/mainwindowbase.h4
-rw-r--r--noncore/unsupported/mail2/viewmailbase.cpp4
-rw-r--r--noncore/unsupported/mail2/viewmailbase.h4
6 files changed, 13 insertions, 13 deletions
diff --git a/noncore/unsupported/mail2/composerbase.cpp b/noncore/unsupported/mail2/composerbase.cpp
index 7754863..10d567d 100644
--- a/noncore/unsupported/mail2/composerbase.cpp
+++ b/noncore/unsupported/mail2/composerbase.cpp
@@ -4,3 +4,2 @@
4#include <qlineedit.h> 4#include <qlineedit.h>
5#include <qtoolbar.h>
6#include <qlayout.h> 5#include <qlayout.h>
@@ -10,2 +9,3 @@
10 9
10#include <qpe/qpetoolbar.h>
11#include <qpe/resource.h> 11#include <qpe/resource.h>
@@ -21,3 +21,3 @@ ComposerBase::ComposerBase(QWidget *parent, const char *name, WFlags fl)
21 21
22 toolbar = new QToolBar(this); 22 toolbar = new QPEToolBar(this);
23 addToolBar(toolbar); 23 addToolBar(toolbar);
@@ -118,3 +118,3 @@ ComposerBase::ComposerBase(QWidget *parent, const char *name, WFlags fl)
118 118
119 attachToolbar = new QToolBar(attachWindow); 119 attachToolbar = new QPEToolBar(attachWindow);
120 attachToolbar->setVerticalStretchable(true); 120 attachToolbar->setVerticalStretchable(true);
diff --git a/noncore/unsupported/mail2/composerbase.h b/noncore/unsupported/mail2/composerbase.h
index e5fab67..75b77f4 100644
--- a/noncore/unsupported/mail2/composerbase.h
+++ b/noncore/unsupported/mail2/composerbase.h
@@ -8,5 +8,5 @@ class ListViewPlus;
8class QPopupMenu; 8class QPopupMenu;
9class QPEToolBar;
9class QComboBox; 10class QComboBox;
10class QLineEdit; 11class QLineEdit;
11class QToolBar;
12class QAction; 12class QAction;
@@ -40,5 +40,5 @@ protected:
40 QPopupMenu *attachPopup; 40 QPopupMenu *attachPopup;
41 QPEToolBar *toolbar, *attachToolbar;
41 QComboBox *fromBox, *from, *receiversBox, *subjectBox, *priority; 42 QComboBox *fromBox, *from, *receiversBox, *subjectBox, *priority;
42 QLineEdit *replyto, *to, *cc, *bcc, *subject; 43 QLineEdit *replyto, *to, *cc, *bcc, *subject;
43 QToolBar *toolbar, *attachToolbar;
44 QAction *sendmail, *attachfile, *addressbook, *abort, *addattach, *delattach; 44 QAction *sendmail, *attachfile, *addressbook, *abort, *addattach, *delattach;
diff --git a/noncore/unsupported/mail2/mainwindowbase.cpp b/noncore/unsupported/mail2/mainwindowbase.cpp
index 4054af6..c55bd90 100644
--- a/noncore/unsupported/mail2/mainwindowbase.cpp
+++ b/noncore/unsupported/mail2/mainwindowbase.cpp
@@ -3,3 +3,2 @@
3#include <qpopupmenu.h> 3#include <qpopupmenu.h>
4#include <qtoolbar.h>
5#include <qaction.h> 4#include <qaction.h>
@@ -9,2 +8,3 @@
9 8
9#include <qpe/qpetoolbar.h>
10#include <qpe/resource.h> 10#include <qpe/resource.h>
@@ -21,3 +21,3 @@ MainWindowBase::MainWindowBase(QWidget *parent, const char *name, WFlags fl)
21 21
22 toolbar = new QToolBar(this); 22 toolbar = new QPEToolBar(this);
23 addToolBar(toolbar); 23 addToolBar(toolbar);
diff --git a/noncore/unsupported/mail2/mainwindowbase.h b/noncore/unsupported/mail2/mainwindowbase.h
index cf23f4f..0776f02 100644
--- a/noncore/unsupported/mail2/mainwindowbase.h
+++ b/noncore/unsupported/mail2/mainwindowbase.h
@@ -8,4 +8,4 @@ class QProgressBar;
8class FolderWidget; 8class FolderWidget;
9class QPEToolBar;
9class MailTable; 10class MailTable;
10class QToolBar;
11class QAction; 11class QAction;
@@ -27,4 +27,4 @@ protected:
27 FolderWidget *folderView; 27 FolderWidget *folderView;
28 QPEToolBar *toolbar;
28 MailTable *mailView; 29 MailTable *mailView;
29 QToolBar *toolbar;
30 QAction *compose, *folders, *findmails, *configure, *stop; 30 QAction *compose, *folders, *findmails, *configure, *stop;
diff --git a/noncore/unsupported/mail2/viewmailbase.cpp b/noncore/unsupported/mail2/viewmailbase.cpp
index 134e5cb..b650c88 100644
--- a/noncore/unsupported/mail2/viewmailbase.cpp
+++ b/noncore/unsupported/mail2/viewmailbase.cpp
@@ -2,3 +2,2 @@
2#include <qlistview.h> 2#include <qlistview.h>
3#include <qtoolbar.h>
4#include <qaction.h> 3#include <qaction.h>
@@ -7,2 +6,3 @@
7 6
7#include <qpe/qpetoolbar.h>
8#include <qpe/resource.h> 8#include <qpe/resource.h>
@@ -18,3 +18,3 @@ ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl)
18 18
19 toolbar = new QToolBar(this); 19 toolbar = new QPEToolBar(this);
20 toolbar->setHorizontalStretchable(true); 20 toolbar->setHorizontalStretchable(true);
diff --git a/noncore/unsupported/mail2/viewmailbase.h b/noncore/unsupported/mail2/viewmailbase.h
index 183bb04..9ddf2aa 100644
--- a/noncore/unsupported/mail2/viewmailbase.h
+++ b/noncore/unsupported/mail2/viewmailbase.h
@@ -7,4 +7,4 @@ class QAction;
7class OpenDiag; 7class OpenDiag;
8class QToolBar;
9class QListView; 8class QListView;
9class QPEToolBar;
10class QTextBrowser; 10class QTextBrowser;
@@ -21,3 +21,3 @@ protected:
21 QListView *attachments; 21 QListView *attachments;
22 QToolBar *toolbar; 22 QPEToolBar *toolbar;
23 QTextBrowser *browser; 23 QTextBrowser *browser;