summaryrefslogtreecommitdiff
path: root/noncore/net
authorharlekin <harlekin>2004-01-06 15:29:33 (UTC)
committer harlekin <harlekin>2004-01-06 15:29:33 (UTC)
commit7a9f4e78be5e2b888568ba99b2b65505d2a50bf0 (patch) (side-by-side diff)
tree0f4af391fe40aa5b535ef344b0ac68ccb8bb819d /noncore/net
parent5d7ebe571f6191d2eb9ed0cf4ba5669ce8522ce2 (diff)
downloadopie-7a9f4e78be5e2b888568ba99b2b65505d2a50bf0.zip
opie-7a9f4e78be5e2b888568ba99b2b65505d2a50bf0.tar.gz
opie-7a9f4e78be5e2b888568ba99b2b65505d2a50bf0.tar.bz2
only action if value changed
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp
index f242bda..a0805ba 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.cpp
+++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp
@@ -72,3 +72,4 @@ void MailApplet::slotClicked() {
- if (m_statusMail) m_statusMail->reset_status();
+ if (m_statusMail)
+ m_statusMail->reset_status();
@@ -103,5 +104,6 @@ void MailApplet::slotCheck() {
m_statusMail->check_current_stat( stat );
+ int newMailsOld = m_newMails;
m_newMails = stat.message_unseen;
qDebug( QString( "test %1" ).arg( m_newMails ) );
- if ( m_newMails > 0 ) {
+ if ( m_newMails > 0 && newMailsOld != m_newMails ) {
ODevice *device = ODevice::inst();
@@ -134,7 +136,9 @@ void MailApplet::slotCheck() {
- Config cfg( "mail" );
- cfg.setGroup( "Status" );
- cfg.writeEntry( "newMails", m_newMails );
- QCopEnvelope env( "QPE/Pim", "newMails(int)" );
- env << m_newMails;
+ if ( newMailsOld != m_newMails ) {
+ Config cfg( "mail" );
+ cfg.setGroup( "Status" );
+ cfg.writeEntry( "newMails", m_newMails );
+ QCopEnvelope env( "QPE/Pim", "newMails(int)" );
+ env << m_newMails;
+ }
}