summaryrefslogtreecommitdiffabout
path: root/kmicromail/opiemail.cpp
Unidiff
Diffstat (limited to 'kmicromail/opiemail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/opiemail.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp
index bdbd93a..70fbcb2 100644
--- a/kmicromail/opiemail.cpp
+++ b/kmicromail/opiemail.cpp
@@ -14,25 +14,25 @@
14#include <libmailwrapper/smtpwrapper.h> 14#include <libmailwrapper/smtpwrapper.h>
15#include <libmailwrapper/mailtypes.h> 15#include <libmailwrapper/mailtypes.h>
16#include <libmailwrapper/abstractmail.h> 16#include <libmailwrapper/abstractmail.h>
17/* OPIE */ 17/* OPIE */
18//#include <qpe/resource.h> 18//#include <qpe/resource.h>
19#include <qpe/qpeapplication.h> 19#include <qpe/qpeapplication.h>
20 20
21/* QT */ 21/* QT */
22 22
23using namespace Opie::Core; 23using namespace Opie::Core;
24 24
25OpieMail::OpieMail( QWidget *parent, const char *name, WFlags flags ) 25OpieMail::OpieMail( QWidget *parent, const char *name, WFlags flags )
26 : MainWindow( parent, name, WStyle_ContextHelp ) 26 : MainWindow( parent, name) //, WStyle_ContextHelp )
27{ 27{
28 settings = new Settings(); 28 settings = new Settings();
29 29
30 folderView->populate( settings->getAccounts() ); 30 folderView->populate( settings->getAccounts() );
31 31
32} 32}
33 33
34OpieMail::~OpieMail() 34OpieMail::~OpieMail()
35{ 35{
36 if (settings) delete settings; 36 if (settings) delete settings;
37} 37}
38 38