summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore 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 f6cab2a..b46c154 100644
--- a/core/multimedia/opieplayer/inputDialog.cpp
+++ b/core/multimedia/opieplayer/inputDialog.cpp
@@ -33,20 +33,20 @@ InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags
33 connect( browserButton, SIGNAL(released()),this,SLOT(browse())); 33 connect( browserButton, SIGNAL(released()),this,SLOT(browse()));
34 LineEdit1 = new QLineEdit( this, "LineEdit1" ); 34 LineEdit1 = new QLineEdit( this, "LineEdit1" );
35 LineEdit1->setGeometry( QRect( 4, 10, 190, 22 ) ); 35 LineEdit1->setGeometry( QRect( 4, 10, 190, 22 ) );
36} 36}
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;audio/x-mpegurl", 0 ); 49 QString str = OFileDialog::getOpenFileName( 1,"/","", "audio/*;video/*;playlist/plain;audio/x-mpegurl", 0 );
50 LineEdit1->setText(str); 50 LineEdit1->setText(str);
51} 51}
52 52