author | alwin <alwin> | 2004-01-05 02:00:29 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-01-05 02:00:29 (UTC) |
commit | 3d0cb890b496c7b9fd16e300d5456233dbad0077 (patch) (side-by-side diff) | |
tree | ffdb9569de0c7e540f56e082f6aa1160b14d0e6a /noncore | |
parent | 667cdc3c4c05f465244de26580be8808a0eb2b0e (diff) | |
download | opie-3d0cb890b496c7b9fd16e300d5456233dbad0077.zip opie-3d0cb890b496c7b9fd16e300d5456233dbad0077.tar.gz opie-3d0cb890b496c7b9fd16e300d5456233dbad0077.tar.bz2 |
corrected pixmap path
-rw-r--r-- | noncore/net/mail/taskbarapplet/mailapplet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp index 8bf4b89..5ba7085 100644 --- a/noncore/net/mail/taskbarapplet/mailapplet.cpp +++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp @@ -1,76 +1,76 @@ #include <qlayout.h> #include <qpixmap.h> #include <qlabel.h> #include <qsound.h> #include <qtimer.h> #include <qdir.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/resource.h> #include <qpe/config.h> #include <opie/odevice.h> #include "mailapplet.h" using namespace Opie; MailApplet::MailApplet( QWidget *parent, const char *name, WFlags fl ) : QButton( parent, name, fl ) { m_config = new Config( "mail" ); m_config->setGroup( "Applet" ); QVBoxLayout *layout = new QVBoxLayout( this ); layout->addItem( new QSpacerItem( 0,0 ) ); QLabel *pixmap = new QLabel( this ); - pixmap->setPixmap( Resource::loadPixmap( "opiemail/mailchecker" ) ); + pixmap->setPixmap( Resource::loadPixmap( "mail/mailchecker" ) ); layout->addWidget( pixmap ); layout->addItem( new QSpacerItem( 0,0 ) ); hide(); 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 ); connect( m_intervalTimer, SIGNAL(timeout() ), SLOT( slotCheck() ) ); QTimer::singleShot( 0, this, SLOT( slotCheck() ) ); } } void MailApplet::drawButton(QPainter *) { } void MailApplet::drawButtonText(QPainter *) { } void MailApplet::slotClicked() { qDebug( " CLICKED" ); QCopEnvelope e( "QPE/System", "execute(QString)" ); e << QString( "opiemail" ); ODevice *device = ODevice::inst(); if ( !device-> ledList ( ). isEmpty ( ) ) { OLed led = ( device-> ledList ( ). contains ( Led_Mail )) ? Led_Mail : device-> ledList ( ) [0]; device->setLedState( led, Led_Off ); } } void MailApplet::slotCheck() { // Check wether the check interval has been changed. int newIntervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000; if ( newIntervalMs != m_intervalMs ) { m_intervalTimer->changeInterval( newIntervalMs ); m_intervalMs = newIntervalMs; } int newMails = 0; if ( true ) { ODevice *device = ODevice::inst(); if ( isHidden() ) show(); if ( m_config->readBoolEntry( "BlinkLed", true ) ) { |