summaryrefslogtreecommitdiff
path: root/noncore/net
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
parent3804209658d051d197526a28561bbd2e31b6f439 (diff)
downloadopie-0c41bcb3472b013a55b990bc45280043dfcf4986.zip
opie-0c41bcb3472b013a55b990bc45280043dfcf4986.tar.gz
opie-0c41bcb3472b013a55b990bc45280043dfcf4986.tar.bz2
update
Diffstat (limited to 'noncore/net') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp17
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.h0
-rw-r--r--noncore/net/mail/taskbarapplet/mailappletimpl.cpp13
-rw-r--r--noncore/net/mail/taskbarapplet/mailappletimpl.h0
4 files changed, 17 insertions, 13 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
@@ -39,4 +39,6 @@ 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;
}
@@ -59,3 +61,2 @@ void MailApplet::mouseReleaseEvent( QMouseEvent* e) {
void MailApplet::slotClicked() {
- qDebug( " CLICKED" );
QCopEnvelope e( "QPE/System", "execute(QString)" );
@@ -83,3 +84,2 @@ void MailApplet::startup() {
connect( m_intervalTimer, SIGNAL(timeout() ), this, SLOT( slotCheck() ) );
-
}
@@ -94,3 +94,2 @@ void MailApplet::slotCheck() {
-
folderStat stat;
@@ -98,6 +97,7 @@ void MailApplet::slotCheck() {
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 ) ) {
@@ -120,3 +120,4 @@ void MailApplet::slotCheck() {
ODevice *device = ODevice::inst();
- if ( !isHidden() ) hide();
+ if ( !isHidden() )
+ hide();
if ( !device-> ledList( ).isEmpty( ) ) {
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.h b/noncore/net/mail/taskbarapplet/mailapplet.h
index 25f0652..b4d3742 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.h
+++ b/noncore/net/mail/taskbarapplet/mailapplet.h
diff --git a/noncore/net/mail/taskbarapplet/mailappletimpl.cpp b/noncore/net/mail/taskbarapplet/mailappletimpl.cpp
index 26f6a6f..c01a674 100644
--- a/noncore/net/mail/taskbarapplet/mailappletimpl.cpp
+++ b/noncore/net/mail/taskbarapplet/mailappletimpl.cpp
@@ -5,3 +5,2 @@ MailAppletImpl::MailAppletImpl()
: m_mailApplet(0), ref(0) {
-
}
@@ -13,3 +12,4 @@ MailAppletImpl::~MailAppletImpl() {
QWidget *MailAppletImpl::applet(QWidget *parent) {
- if (!m_mailApplet) m_mailApplet = new MailApplet(parent);
+ if (!m_mailApplet)
+ m_mailApplet = new MailApplet(parent);
return m_mailApplet;
@@ -23,6 +23,9 @@ QRESULT MailAppletImpl::queryInterface(const QUuid &uuid, QUnknownInterface **if
*iface = 0;
- if (uuid == IID_QUnknown) *iface = this;
- else if (uuid == IID_TaskbarApplet) *iface = this;
+ if (uuid == IID_QUnknown)
+ *iface = this;
+ else if (uuid == IID_TaskbarApplet)
+ *iface = this;
- if (*iface) (*iface)->addRef();
+ if (*iface)
+ (*iface)->addRef();
return QS_OK;
diff --git a/noncore/net/mail/taskbarapplet/mailappletimpl.h b/noncore/net/mail/taskbarapplet/mailappletimpl.h
index 4f27eb3..4809053 100644
--- a/noncore/net/mail/taskbarapplet/mailappletimpl.h
+++ b/noncore/net/mail/taskbarapplet/mailappletimpl.h