summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmail.h
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/viewmail.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/noncore/net/mail/viewmail.h b/noncore/net/mail/viewmail.h
index 9d3c6e4..615939a 100644
--- a/noncore/net/mail/viewmail.h
+++ b/noncore/net/mail/viewmail.h
@@ -5,2 +5,3 @@
#include <qmap.h>
+#include <qstringlist.h>
@@ -51,3 +52,3 @@ public:
static QString appName() { return QString::fromLatin1("mail"); }
- void setMailInfo( const QString & from, const QString & to, const QString & subject, const QString & cc, const QString & bcc, const QString & bodytext );
+ void setMailInfo( const QString & from, const QStringList & to, const QString & subject, const QStringList & cc, const QStringList & bcc,const QString & date, const QString & bodytext );
@@ -70,3 +71,12 @@ private:
bool _gotBody;
+
+ // 0 from
+ // 1 subject
+ // 2 bodytext
+ // 3 date
QMap <int,QString> m_mail;
+ // 0 to
+ // 1 cc
+ // 2 bcc
+ QMap <int,QStringList> m_mail2;