author | llornkcor <llornkcor> | 2002-09-21 02:29:11 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-21 02:29:11 (UTC) |
commit | 56d434ffe69337186941eba1b5b5dee16da537d7 (patch) (unidiff) | |
tree | f37ed44e3abb1c0ec77de80b9b4582fe214fbec7 | |
parent | a9131dc457602352acac91e31dcca51d37361eba (diff) | |
download | opie-56d434ffe69337186941eba1b5b5dee16da537d7.zip opie-56d434ffe69337186941eba1b5b5dee16da537d7.tar.gz opie-56d434ffe69337186941eba1b5b5dee16da537d7.tar.bz2 |
fix playlist mimetype
-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 f073102..ce472f1 100644 --- a/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidgetgui.cpp | |||
@@ -194,13 +194,13 @@ PlayListWidgetGui::PlayListWidgetGui( QWidget* parent, const char* name, WFlags | |||
194 | QWidget *LTab; | 194 | QWidget *LTab; |
195 | LTab = new QWidget( tabWidget, "LTab" ); | 195 | LTab = new QWidget( tabWidget, "LTab" ); |
196 | QGridLayout *Llayout = new QGridLayout( LTab ); | 196 | QGridLayout *Llayout = new QGridLayout( LTab ); |
197 | Llayout->setSpacing( 2 ); | 197 | Llayout->setSpacing( 2 ); |
198 | Llayout->setMargin( 2 ); | 198 | Llayout->setMargin( 2 ); |
199 | 199 | ||
200 | playLists = new FileSelector( "playlist/plain", LTab, "fileselector" , FALSE, FALSE ); //buggy | 200 | playLists = new FileSelector( "playlist/plain;audio/x-mpegurl", LTab, "fileselector" , FALSE, FALSE ); |
201 | Llayout->addMultiCellWidget( playLists, 0, 0, 0, 1 ); | 201 | Llayout->addMultiCellWidget( playLists, 0, 0, 0, 1 ); |
202 | 202 | ||
203 | tabWidget->insertTab( LTab, tr( "Lists" ) ); | 203 | tabWidget->insertTab( LTab, tr( "Lists" ) ); |
204 | 204 | ||
205 | setCentralWidget( vbox5 ); | 205 | setCentralWidget( vbox5 ); |
206 | } | 206 | } |