summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oresource.cpp7
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
@@ -33,6 +33,7 @@
33#include <opie2/odebug.h> 33#include <opie2/odebug.h>
34 34
35#include <qpe/applnk.h> 35#include <qpe/applnk.h>
36#include <qpe/resource.h>
36 37
37#include "oresource.h" 38#include "oresource.h"
38 39
@@ -45,11 +46,9 @@ static int bigIconSize = -1; // Size of large icons (width & height)
45QImage OResource::loadImage( const QString &name, Scale scale ) 46QImage OResource::loadImage( const QString &name, Scale scale )
46{ 47{
47 // Load image 48 // Load image
48 QString filename; 49 QImage image = Resource::loadImage( name );
49 filename.sprintf( "%spics/%s.png", (const char*) oApp->qpeDir(), (const char*) name );
50 QImage image( filename );
51 if ( image.isNull() ) 50 if ( image.isNull() )
52 odebug << "libopie2 OResource: can't find image " << filename << oendl; 51 odebug << "libopie2 OResource: can't find image " << name << oendl;
53 52
54 // Scale image (if necessary) 53 // Scale image (if necessary)
55 if ( scale == SmallIcon ) 54 if ( scale == SmallIcon )