Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
1072961e
Commit
1072961e
authored
Sep 06, 2007
by
Jean-Baptiste Kempf
Browse files
Qt4 - Sout: add a file mask on the known muxers.
patch by Jean-François Massol
parent
21dd718a
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/sout.cpp
View file @
1072961e
...
...
@@ -132,8 +132,9 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
void
SoutDialog
::
fileBrowse
()
{
ui
.
tabWidget
->
setTabEnabled
(
0
,
false
);
QString
f
=
QFileDialog
::
getOpenFileName
(
this
,
qtr
(
"Save file"
),
""
,
""
);
ui
.
fileEdit
->
setText
(
f
);
QString
fileName
=
QFileDialog
::
getOpenFileName
(
this
,
qtr
(
"Save file"
),
""
,
qtr
(
"Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)"
)
);
ui
.
fileEdit
->
setText
(
fileName
);
updateMRL
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment