summaryrefslogtreecommitdiff
path: root/noncore
authoreilers <eilers>2003-01-02 14:09:45 (UTC)
committer eilers <eilers>2003-01-02 14:09:45 (UTC)
commitff5b40a1f67134b7a73b0c62cfb2d1e0ef0e779e (patch) (side-by-side diff)
tree31957efb34d3cee6f4fef38d00decfe5f468c64d /noncore
parent0e506ffcd82f1c2df738393dc316b62475fe6fff (diff)
downloadopie-ff5b40a1f67134b7a73b0c62cfb2d1e0ef0e779e.zip
opie-ff5b40a1f67134b7a73b0c62cfb2d1e0ef0e779e.tar.gz
opie-ff5b40a1f67134b7a73b0c62cfb2d1e0ef0e779e.tar.bz2
I hope this works better on the pda. The previous solution just worked on
my desktop pc ..
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/mainwindow.cpp10
1 files changed, 7 insertions, 3 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,14 +1,16 @@
#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"
#include "configfile.h"
#include "searchdiag.h"
#include "mailtable.h"
#include "composer.h"
#include "viewmail.h"
#include "mailfactory.h"
@@ -28,27 +30,29 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags fl)
connect(mailView, SIGNAL(resetProgress()), status, SLOT(resetProgress()));
connect(mailView, SIGNAL(stopEnabled(bool)), status, SLOT(setStopEnabled(bool)));
connect(status, SIGNAL(stop()), mailView, SLOT(stop()));
connect(compose, SIGNAL(activated()), SLOT(slotComposeNoParams()));
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 &)),
- this, SLOT ( appMessage(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)
{
if (msg == "writeMail(QString,QString)") {
QDataStream stream(data,IO_ReadOnly);
QString name, email;
stream >> name >> email;
qWarning("opie-mail:: Should send mail to %s with address %s", name.latin1(), email.latin1() );