author | simon <simon> | 2002-12-11 01:24:05 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-11 01:24:05 (UTC) |
commit | 3ec7f32d0924c737664a6ad4dfb43dc3c20605d0 (patch) (unidiff) | |
tree | bb9a9dcef582754293be5e1f7367c64e178c8243 | |
parent | d67ad1a6ef93d358beab268153cf2b0694e5f633 (diff) | |
download | opie-3ec7f32d0924c737664a6ad4dfb43dc3c20605d0.zip opie-3ec7f32d0924c737664a6ad4dfb43dc3c20605d0.tar.gz opie-3ec7f32d0924c737664a6ad4dfb43dc3c20605d0.tar.bz2 |
- make more use of the Resource::* api for loading the data
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/mediawidget.cpp b/noncore/multimedia/opieplayer2/mediawidget.cpp index c9d7db8..865ff91 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.cpp +++ b/noncore/multimedia/opieplayer2/mediawidget.cpp | |||
@@ -73,5 +73,5 @@ MediaWidget::Button MediaWidget::setupButton( const SkinButtonInfo &buttonInfo, | |||
73 | QBitmap MediaWidget::setupButtonMask( const Command &command, const QString &fileName ) | 73 | QBitmap MediaWidget::setupButtonMask( const Command &command, const QString &fileName ) |
74 | { | 74 | { |
75 | QBitmap mask( fileName ); | 75 | QBitmap mask( Resource::findPixmap( fileName ) ); |
76 | if ( mask.isNull() ) | 76 | if ( mask.isNull() ) |
77 | return mask; | 77 | return mask; |
@@ -106,5 +106,5 @@ void MediaWidget::loadSkin( const SkinButtonInfo *skinInfo, uint buttonCount, co | |||
106 | 106 | ||
107 | setupButtons( skinInfo, buttonCount, | 107 | setupButtons( skinInfo, buttonCount, |
108 | QPEApplication::qpeDir() + "/pics/" + skinPath + QString::fromLatin1( "/skin%1_mask_" ).arg( fileNameInfix ), buttonUpImage.size() ); | 108 | skinPath + QString::fromLatin1( "/skin%1_mask_" ).arg( fileNameInfix ), buttonUpImage.size() ); |
109 | } | 109 | } |
110 | 110 | ||