summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch
Side-by-side diff
Diffstat (limited to 'noncore/applets/pyquicklaunch') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/applets/pyquicklaunch/pyquicklaunch.cpp b/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
index bcd2f0d..45eda4e 100644
--- a/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
+++ b/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
@@ -7,28 +7,28 @@
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/
#include "pyquicklaunch.h"
/* OPIE */
#include <opie2/odebug.h>
+#include <opie2/oresource.h>
#include <opie2/otaskbarapplet.h>
#include <qpe/config.h>
#include <qpe/qpeapplication.h>
-#include <qpe/resource.h>
using namespace Opie::Core;
/* QT */
#include <qcopchannel_qws.h>
#include <qpainter.h>
#include <qframe.h>
#include <qfile.h>
#include <qtimer.h>
/* STD */
#include <pwd.h>
#include <sys/types.h>
@@ -73,26 +73,26 @@ void PyQuicklaunchControl::writeConfigEntry( const char *entry, int val )
cfg.writeEntry( entry, val );
}
//===========================================================================
PyQuicklaunchApplet::PyQuicklaunchApplet( QWidget *parent, const char *name )
: QWidget( parent, name ), online( false )
{
setFixedHeight( 18 );
setFixedWidth( 14 );
status = new PyQuicklaunchControl( this, this, "Python Quicklaunch Status" );
- _online = Resource::loadPixmap( "pyquicklaunch/online" );
- _offline = Resource::loadPixmap( "pyquicklaunch/offline" );
+ _online = Opie::Core::OResource::loadPixmap( "pyquicklaunch/online", Opie::Core::OResource::SmallIcon );
+ _offline = Opie::Core::OResource::loadPixmap( "pyquicklaunch/offline", Opie::Core::OResource::SmallIcon );
_fifoName = QString().sprintf( "/tmp/mickeys-quicklauncher-%s", ::getpwuid( ::getuid() )->pw_name );
odebug << "PyQuicklaunchApplet fifo name = '" << _fifoName << "'" << oendl;
_fifo.setName( _fifoName );
_control = new QCopChannel( "QPE/PyLauncher", parent, "PyLauncher QCop Control Channel" );
connect( _control, SIGNAL(received(const QCString&,const QByteArray&)),
this, SLOT(receivedMessage(const QCString&,const QByteArray&) ) );
}