summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-05-18 13:13:07 (UTC)
committer llornkcor <llornkcor>2002-05-18 13:13:07 (UTC)
commitf2eb20bf6d00bb18db4e2df6cad13f4ce9c83d37 (patch) (unidiff)
treeac9015a8d706df1ac91362de94b7a782c215cf40
parent146121e0942c77551af323709acd82d1da45c318 (diff)
downloadopie-f2eb20bf6d00bb18db4e2df6cad13f4ce9c83d37.zip
opie-f2eb20bf6d00bb18db4e2df6cad13f4ce9c83d37.tar.gz
opie-f2eb20bf6d00bb18db4e2df6cad13f4ce9c83d37.tar.bz2
added m3u to mimetype list for ofiledialog
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/inputDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/inputDialog.cpp b/core/multimedia/opieplayer/inputDialog.cpp
index b80d129..f6cab2a 100644
--- a/core/multimedia/opieplayer/inputDialog.cpp
+++ b/core/multimedia/opieplayer/inputDialog.cpp
@@ -37,16 +37,16 @@ InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags
37 37
38/* 38/*
39 * Destroys the object and frees any allocated resources 39 * Destroys the object and frees any allocated resources
40 */ 40 */
41InputDialog::~InputDialog() 41InputDialog::~InputDialog()
42{ 42{
43 inputText= LineEdit1->text(); 43 inputText= LineEdit1->text();
44 44
45} 45}
46 46
47void InputDialog::browse() { 47void InputDialog::browse() {
48 48
49 QString str = OFileDialog::getOpenFileName( 1,"/","", "playlist/plain", 0 ); 49 QString str = OFileDialog::getOpenFileName( 1,"/","", "playlist/plain;audio/x-mpegurl", 0 );
50 LineEdit1->setText(str); 50 LineEdit1->setText(str);
51} 51}
52 52