summaryrefslogtreecommitdiff
Side-by-side diff
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 @@
#include <qmessagebox.h>
#include <qaction.h>
+#include <qapplication.h>
+
#include <qpe/qcopenvelope_qws.h>
#include "mailstatusbar.h"
#include "folderwidget.h"
#include "mainwindow.h"
#include "configdiag.h"
@@ -34,14 +36,16 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags fl)
connect(sendQueue, SIGNAL(activated()), SLOT(slotSendQueued()));
connect(findmails, SIGNAL(activated()), SLOT(slotSearch()));
connect(configure, SIGNAL(activated()), SLOT(slotConfigure()));
// Added by Stefan Eilers to allow starting by addressbook..
#if !defined(QT_NO_COP)
- QCopChannel *addressChannel = new QCopChannel("QPE/Application/mail" , this );
- connect (addressChannel, SIGNAL( received(const QCString &, const QByteArray &)),
+// QCopChannel *addressChannel = new QCopChannel("QPE/Application/mail" , this );
+// connect (addressChannel, SIGNAL( received(const QCString &, const QByteArray &)),
+// this, SLOT ( appMessage(const QCString &, const QByteArray &) ) );
+ connect( qApp, SIGNAL( appMessage( const QCString&, const QByteArray& ) ),
this, SLOT ( appMessage(const QCString &, const QByteArray &) ) );
#endif
}
// Added by Stefan Eilers to allow starting by addressbook..
void MainWindow::appMessage(const QCString &msg, const QByteArray &data)