author | drw <drw> | 2005-05-25 18:59:20 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-25 18:59:20 (UTC) |
commit | 5fdc5b4cba7743947a23840ba09fadcc7414309b (patch) (unidiff) | |
tree | 5f5b7959e39b3ebc63d108f40dd8b628a04f5de5 | |
parent | 3a7dd5b0904cdea71d486ffdea8bfd1aedb0af59 (diff) | |
download | opie-5fdc5b4cba7743947a23840ba09fadcc7414309b.zip opie-5fdc5b4cba7743947a23840ba09fadcc7414309b.tar.gz opie-5fdc5b4cba7743947a23840ba09fadcc7414309b.tar.bz2 |
Use loadPixmap to fix compile error
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidgetgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp b/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp index 589c11f..49f1786 100644 --- a/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp | |||
@@ -63,9 +63,9 @@ PlayListWidgetGui::PlayListWidgetGui(QWidget* parent, const char* name ) | |||
63 | 63 | ||
64 | bar = new QToolBar( this ); | 64 | bar = new QToolBar( this ); |
65 | bar->setLabel( tr( "Play Operations" ) ); | 65 | bar->setLabel( tr( "Play Operations" ) ); |
66 | 66 | ||
67 | tbDeletePlaylist = new QPushButton( Opie::Core::OResource::loadIconSet( "trash", Opie::Core::OResource::SmallIcon ), | 67 | tbDeletePlaylist = new QPushButton( Opie::Core::OResource::loadPixmap( "trash", Opie::Core::OResource::SmallIcon ), |
68 | "", bar, "close" ); | 68 | "", bar, "close" ); |
69 | tbDeletePlaylist->setFlat( TRUE ); | 69 | tbDeletePlaylist->setFlat( TRUE ); |
70 | tbDeletePlaylist->setFixedSize( 20, 20 ); | 70 | tbDeletePlaylist->setFixedSize( 20, 20 ); |
71 | 71 | ||