summaryrefslogtreecommitdiff
path: root/noncore/net/mail/taskbarapplet/mailapplet.cpp
authorharlekin <harlekin>2004-01-05 21:13:38 (UTC)
committer harlekin <harlekin>2004-01-05 21:13:38 (UTC)
commit0c41bcb3472b013a55b990bc45280043dfcf4986 (patch) (side-by-side diff)
tree1136f4580b5f8f8a2a699545f8e9fb0006a0e054 /noncore/net/mail/taskbarapplet/mailapplet.cpp
parent3804209658d051d197526a28561bbd2e31b6f439 (diff)
downloadopie-0c41bcb3472b013a55b990bc45280043dfcf4986.zip
opie-0c41bcb3472b013a55b990bc45280043dfcf4986.tar.gz
opie-0c41bcb3472b013a55b990bc45280043dfcf4986.tar.bz2
update
Diffstat (limited to 'noncore/net/mail/taskbarapplet/mailapplet.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp
index 5d98783..35198d1 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.cpp
+++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp
@@ -37,8 +37,10 @@ MailApplet::MailApplet( QWidget *parent )
MailApplet::~MailApplet() {
- if (m_statusMail) delete m_statusMail;
- if (m_config) delete m_config;
+ if ( m_statusMail )
+ delete m_statusMail;
+ if ( m_config )
+ delete m_config;
}
void MailApplet::paintEvent( QPaintEvent* ) {
@@ -57,7 +59,6 @@ void MailApplet::mouseReleaseEvent( QMouseEvent* e) {
}
void MailApplet::slotClicked() {
- qDebug( " CLICKED" );
QCopEnvelope e( "QPE/System", "execute(QString)" );
e << QString( "opiemail" );
@@ -81,7 +82,6 @@ void MailApplet::startup() {
m_intervalTimer = new QTimer();
m_intervalTimer->start( m_intervalMs );
connect( m_intervalTimer, SIGNAL(timeout() ), this, SLOT( slotCheck() ) );
-
}
void MailApplet::slotCheck() {
@@ -92,14 +92,14 @@ void MailApplet::slotCheck() {
m_intervalMs = newIntervalMs;
}
-
folderStat stat;
m_statusMail->check_current_stat( stat );
m_newMails = stat.message_unseen;
- qDebug( QString( "test %1" ).arg( stat.message_unseen ) );
+ qDebug( QString( "test %1" ).arg( m_newMails ) );
if ( m_newMails > 0 ) {
ODevice *device = ODevice::inst();
- if ( isHidden() ) show();
+ if ( isHidden() )
+ show();
if ( m_config->readBoolEntry( "BlinkLed", true ) ) {
if ( !device-> ledList ( ).isEmpty( ) ) {
OLed led = ( device->ledList( ).contains( Led_Mail ) ) ? Led_Mail : device->ledList( ) [0];
@@ -118,7 +118,8 @@ void MailApplet::slotCheck() {
} else {
ODevice *device = ODevice::inst();
- if ( !isHidden() ) hide();
+ if ( !isHidden() )
+ hide();
if ( !device-> ledList( ).isEmpty( ) ) {
OLed led = ( device->ledList( ).contains( Led_Mail ) ) ? Led_Mail : device->ledList( ) [0];
device->setLedState( led, Led_Off );