Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
0d85325d
Commit
0d85325d
authored
Nov 04, 2006
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unicode-incompatible dialogs
parent
1f5efdb6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
+5
-5
modules/gui/wxwidgets/dialogs/wizard.cpp
modules/gui/wxwidgets/dialogs/wizard.cpp
+4
-4
modules/gui/wxwidgets/dialogs/wizard.hpp
modules/gui/wxwidgets/dialogs/wizard.hpp
+1
-1
No files found.
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
View file @
0d85325d
...
...
@@ -441,9 +441,9 @@ void VLMAddStreamPanel::Load( VLMStream *p_stream )
void
VLMAddStreamPanel
::
OnCreate
(
wxCommandEvent
&
event
)
{
char
*
psz_name
=
FromLocale
(
name_text
->
GetValue
().
mb_str
()
);
char
*
psz_input
=
FromLocale
(
input_text
->
GetValue
().
mb_str
()
);
char
*
psz_output
=
FromLocale
(
output_text
->
GetValue
().
mb_str
()
);
char
*
psz_name
=
wxFromLocale
(
name_text
->
GetValue
()
);
char
*
psz_input
=
wxFromLocale
(
input_text
->
GetValue
()
);
char
*
psz_output
=
wxFromLocale
(
output_text
->
GetValue
()
);
if
(
b_broadcast
&&
!
b_edit
)
{
p_vlm
->
AddBroadcast
(
psz_name
,
psz_input
,
psz_output
,
...
...
@@ -468,8 +468,8 @@ void VLMAddStreamPanel::OnCreate( wxCommandEvent &event )
enabled_checkbox
->
IsChecked
()
?
VLC_TRUE
:
VLC_FALSE
,
loop_checkbox
->
IsChecked
()
?
VLC_TRUE
:
VLC_FALSE
);
}
LocaleFree
(
psz_name
)
;
LocaleFree
(
psz_input
)
;
LocaleFree
(
psz_output
);
wxLocaleFree
(
psz_name
)
;
wx
LocaleFree
(
psz_input
)
;
wx
LocaleFree
(
psz_output
);
if
(
!
b_edit
)
OnClear
(
event
);
if
(
b_edit
)
...
...
modules/gui/wxwidgets/dialogs/wizard.cpp
View file @
0d85325d
...
...
@@ -1308,7 +1308,7 @@ void wizTranscodeExtraPage::OnWizardPageChanging( wxWizardEvent& event )
}
if
(
event
.
GetDirection
()
)
{
p_parent
->
SetTranscodeOut
(
file_text
->
GetValue
()
.
mb_str
()
);
p_parent
->
SetTranscodeOut
(
file_text
->
GetValue
()
);
}
}
...
...
@@ -1521,11 +1521,11 @@ void WizardDialog::SetStream( char const *method, char const *address )
this
->
address
=
strdup
(
address
);
}
void
WizardDialog
::
SetTranscodeOut
(
char
const
*
address
)
void
WizardDialog
::
SetTranscodeOut
(
wxString
address
)
{
char
*
psz_utf8
=
FromLocale
(
address
);
char
*
psz_utf8
=
wx
FromLocale
(
address
);
this
->
address
=
strdup
(
psz_utf8
);
LocaleFree
(
psz_utf8
);
wx
LocaleFree
(
psz_utf8
);
}
void
WizardDialog
::
SetMux
(
char
const
*
mux
)
...
...
modules/gui/wxwidgets/dialogs/wizard.hpp
View file @
0d85325d
...
...
@@ -42,7 +42,7 @@ namespace wxvlc
void
SetTTL
(
int
i_ttl
);
void
SetPartial
(
int
,
int
);
void
SetStream
(
char
const
*
method
,
char
const
*
address
);
void
SetTranscodeOut
(
char
const
*
address
);
void
SetTranscodeOut
(
wxString
address
);
void
SetAction
(
int
i_action
);
int
GetAction
();
void
SetSAP
(
bool
b_enabled
,
const
char
*
psz_name
);
...
...
Write
Preview
Markdown
is supported
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