author | mickeyl <mickeyl> | 2005-06-02 10:50:16 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-06-02 10:50:16 (UTC) |
commit | f55a56f54de1d3fa9084160159a379079a317d96 (patch) (unidiff) | |
tree | ebf3cfeed6833c8147f291aedc5d73d23c8ecde7 | |
parent | 9d6c759ac1adc5cb654bb3ada6b1d64cddc7217d (diff) | |
download | opie-f55a56f54de1d3fa9084160159a379079a317d96.zip opie-f55a56f54de1d3fa9084160159a379079a317d96.tar.gz opie-f55a56f54de1d3fa9084160159a379079a317d96.tar.bz2 |
s/Resource/OResource/
-rw-r--r-- | noncore/multimedia/opieplayer2/skin.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/skin.cpp b/noncore/multimedia/opieplayer2/skin.cpp index b2c1649..b95c544 100644 --- a/noncore/multimedia/opieplayer2/skin.cpp +++ b/noncore/multimedia/opieplayer2/skin.cpp | |||
@@ -23,12 +23,17 @@ | |||
23 | #include "skin.h" | 23 | #include "skin.h" |
24 | #include "singleton.h" | 24 | #include "singleton.h" |
25 | |||
26 | /* OPIE */ | ||
25 | #include <opie2/odebug.h> | 27 | #include <opie2/odebug.h> |
28 | #include <opie2/oresource.h> | ||
29 | using namespace Opie::Core; | ||
30 | #include <qpe/config.h> | ||
31 | #include <qpe/global.h> | ||
26 | 32 | ||
33 | /* QT */ | ||
27 | #include <qcache.h> | 34 | #include <qcache.h> |
28 | #include <qtimer.h> | 35 | #include <qtimer.h> |
29 | 36 | ||
30 | #include <qpe/config.h> | 37 | /* STD */ |
31 | #include <qpe/global.h> | ||
32 | |||
33 | #include <assert.h> | 38 | #include <assert.h> |
34 | 39 | ||
@@ -162,5 +167,5 @@ QString Skin::defaultSkinName() | |||
162 | QImage Skin::loadImage( const QString &fileName ) | 167 | QImage Skin::loadImage( const QString &fileName ) |
163 | { | 168 | { |
164 | return QImage( Resource::findPixmap( fileName ) ); | 169 | return QImage( OResource::findPixmap( fileName ) ); |
165 | } | 170 | } |
166 | 171 | ||