Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jean-Baptiste Kempf
VLC
Commits
744adcaa
Commit
744adcaa
authored
Oct 23, 2005
by
zorglub
Browse files
Put the full path in wizard output option (Closes:#392)
parent
0390618b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/wxwidgets/wizard.cpp
View file @
744adcaa
...
...
@@ -1274,14 +1274,14 @@ wizTranscodeExtraPage::wizTranscodeExtraPage( wxWizard *parent,
void
wizTranscodeExtraPage
::
OnSelectFile
(
wxCommandEvent
&
event
)
{
wxFileDialog
*
file_dialog
=
new
wxFileDialog
(
this
,
wxU
(
_
(
"
Open F
ile"
)),
wxFileDialog
*
file_dialog
=
new
wxFileDialog
(
this
,
wxU
(
_
(
"
Save to f
ile"
)),
wxT
(
""
),
wxT
(
""
),
wxT
(
"*"
),
wxSAVE
);
if
(
file_dialog
&&
file_dialog
->
ShowModal
()
==
wxID_OK
)
{
if
(
file_dialog
->
GetFilename
().
mb_str
()
)
{
file_text
->
SetValue
(
file_dialog
->
Get
Filename
()
);
file_text
->
SetValue
(
file_dialog
->
Get
Path
()
);
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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