summaryrefslogtreecommitdiff
path: root/noncore/net/mail/taskbarapplet/mailapplet.cpp
authorharlekin <harlekin>2004-01-05 16:22:01 (UTC)
committer harlekin <harlekin>2004-01-05 16:22:01 (UTC)
commit642fd965cca78fe4398cbe12afcd15cd2f2257ad (patch) (side-by-side diff)
tree6fe94acc252dca7aed314e439ad6603b676ff149 /noncore/net/mail/taskbarapplet/mailapplet.cpp
parent9acbe167d22cf1bed17a0361fdcdadf7581d8127 (diff)
downloadopie-642fd965cca78fe4398cbe12afcd15cd2f2257ad.zip
opie-642fd965cca78fe4398cbe12afcd15cd2f2257ad.tar.gz
opie-642fd965cca78fe4398cbe12afcd15cd2f2257ad.tar.bz2
prevent segfaults
Diffstat (limited to 'noncore/net/mail/taskbarapplet/mailapplet.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp
index f81dce8..31d5bfe 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.cpp
+++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp
@@ -32,12 +32,14 @@ MailApplet::MailApplet( QWidget *parent, const char *name, WFlags fl )
layout->addWidget( pixmap );
layout->addItem( new QSpacerItem( 0,0 ) );
hide();
+ m_statusMail = 0;
+
connect( this, SIGNAL( clicked() ), SLOT( slotClicked() ) );
if ( !m_config->readBoolEntry( "Disabled", false ) ) {
m_intervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000;
m_intervalTimer = new QTimer();
m_intervalTimer->start( m_intervalMs );
@@ -46,13 +48,13 @@ MailApplet::MailApplet( QWidget *parent, const char *name, WFlags fl )
// delay 5 sec until the whole mail backend gets started .-)
QTimer::singleShot( 5000, this, SLOT( startup() ) );
}
}
MailApplet::~MailApplet() {
- delete m_statusMail;
+ if (m_statusMail) delete m_statusMail;
}
void MailApplet::drawButton(QPainter *) { }
void MailApplet::drawButtonText(QPainter *) { }
void MailApplet::slotClicked() {