summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mail2/mainwindow.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/unsupported/mail2/mainwindow.cpp b/noncore/unsupported/mail2/mainwindow.cpp
index a596653..0d09ec8 100644
--- a/noncore/unsupported/mail2/mainwindow.cpp
+++ b/noncore/unsupported/mail2/mainwindow.cpp
@@ -1,8 +1,10 @@
1#include <qmessagebox.h> 1#include <qmessagebox.h>
2#include <qaction.h> 2#include <qaction.h>
3#include <qapplication.h>
4
3#include <qpe/qcopenvelope_qws.h> 5#include <qpe/qcopenvelope_qws.h>
4 6
5#include "mailstatusbar.h" 7#include "mailstatusbar.h"
6#include "folderwidget.h" 8#include "folderwidget.h"
7#include "mainwindow.h" 9#include "mainwindow.h"
8#include "configdiag.h" 10#include "configdiag.h"
@@ -34,14 +36,16 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags fl)
34 connect(sendQueue, SIGNAL(activated()), SLOT(slotSendQueued())); 36 connect(sendQueue, SIGNAL(activated()), SLOT(slotSendQueued()));
35 connect(findmails, SIGNAL(activated()), SLOT(slotSearch())); 37 connect(findmails, SIGNAL(activated()), SLOT(slotSearch()));
36 connect(configure, SIGNAL(activated()), SLOT(slotConfigure())); 38 connect(configure, SIGNAL(activated()), SLOT(slotConfigure()));
37 39
38 // Added by Stefan Eilers to allow starting by addressbook.. 40 // Added by Stefan Eilers to allow starting by addressbook..
39#if !defined(QT_NO_COP) 41#if !defined(QT_NO_COP)
40 QCopChannel *addressChannel = new QCopChannel("QPE/Application/mail" , this ); 42 // QCopChannel *addressChannel = new QCopChannel("QPE/Application/mail" , this );
41 connect (addressChannel, SIGNAL( received(const QCString &, const QByteArray &)), 43 // connect (addressChannel, SIGNAL( received(const QCString &, const QByteArray &)),
44 // this, SLOT ( appMessage(const QCString &, const QByteArray &) ) );
45 connect( qApp, SIGNAL( appMessage( const QCString&, const QByteArray& ) ),
42 this, SLOT ( appMessage(const QCString &, const QByteArray &) ) ); 46 this, SLOT ( appMessage(const QCString &, const QByteArray &) ) );
43#endif 47#endif
44} 48}
45 49
46// Added by Stefan Eilers to allow starting by addressbook.. 50// Added by Stefan Eilers to allow starting by addressbook..
47void MainWindow::appMessage(const QCString &msg, const QByteArray &data) 51void MainWindow::appMessage(const QCString &msg, const QByteArray &data)