-rw-r--r-- | libopie2/opiecore/oresource.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libopie2/opiecore/oresource.cpp b/libopie2/opiecore/oresource.cpp index 0d6e60a..7253d56 100644 --- a/libopie2/opiecore/oresource.cpp +++ b/libopie2/opiecore/oresource.cpp @@ -30,29 +30,28 @@ */ #include <opie2/oapplication.h> #include <opie2/odebug.h> #include <qpe/applnk.h> +#include <qpe/resource.h> #include "oresource.h" namespace Opie { namespace Core { static int smallIconSize = -1; // Size of small icons (width & height) static int bigIconSize = -1; // Size of large icons (width & height) QImage OResource::loadImage( const QString &name, Scale scale ) { // Load image - QString filename; - filename.sprintf( "%spics/%s.png", (const char*) oApp->qpeDir(), (const char*) name ); - QImage image( filename ); + QImage image = Resource::loadImage( name ); if ( image.isNull() ) - odebug << "libopie2 OResource: can't find image " << filename << oendl; + odebug << "libopie2 OResource: can't find image " << name << oendl; // Scale image (if necessary) if ( scale == SmallIcon ) { // Retrieve size of small icons if ( smallIconSize == -1 ) |