Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
a8f31b96
Commit
a8f31b96
authored
Jul 12, 2004
by
Anil Daoud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unicode fixes
parent
426d10df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/gui/wxwindows/extrapanel.cpp
modules/gui/wxwindows/extrapanel.cpp
+6
-6
No files found.
modules/gui/wxwindows/extrapanel.cpp
View file @
a8f31b96
...
...
@@ -305,9 +305,9 @@ wxPanel *ExtraPanel::VideoPanel( wxWindow *parent )
for
(
int
i
=
0
;
vfilters
[
i
].
psz_filter
!=
NULL
;
i
++
)
{
wxCheckBox
*
box
=
new
wxCheckBox
(
panel
,
Filter0_Event
+
i
,
wx
T
(
_
(
vfilters
[
i
].
psz_name
)
)
);
wx
U
(
_
(
vfilters
[
i
].
psz_name
)
)
);
t_col_sizer
->
Add
(
box
);
box
->
SetToolTip
(
wx
T
(
_
(
vfilters
[
i
].
psz_help
)
)
);
box
->
SetToolTip
(
wx
U
(
_
(
vfilters
[
i
].
psz_help
)
)
);
}
filter_sizer
->
Add
(
t_col_sizer
);
...
...
@@ -566,7 +566,7 @@ void ExtraPanel::OnIdle( wxIdleEvent &event )
i_values
[
i
]
=
400
-
i_val
;
sprintf
(
psz_val
,
"%.1f"
,
f
);
band_texts
[
i
]
->
SetLabel
(
band_frequencies
[
i
]
+
wxT
(
"
\n
"
)
+
wx
T
(
psz_val
)
+
wxT
(
"dB"
)
);
wx
U
(
psz_val
)
+
wxT
(
"dB"
)
);
if
(
p
==
NULL
)
{
break
;
...
...
@@ -580,7 +580,7 @@ void ExtraPanel::OnIdle( wxIdleEvent &event )
sprintf
(
psz_val
,
"%.1f"
,
f_preamp
);
preamp_slider
->
SetValue
(
400
-
i_val
);
const
wxString
preamp
=
wxT
(
"Preamp
\n
"
);
preamp_text
->
SetLabel
(
preamp
+
wx
T
(
psz_val
)
+
wxT
(
"dB"
)
);
preamp_text
->
SetLabel
(
preamp
+
wx
U
(
psz_val
)
+
wxT
(
"dB"
)
);
eq_chkbox
->
SetValue
(
TRUE
);
b_update
=
VLC_FALSE
;
}
...
...
@@ -659,7 +659,7 @@ void ExtraPanel::OnPreamp( wxScrollEvent &event )
sprintf
(
psz_val
,
"%.1f"
,
f
);
const
wxString
preamp
=
wxT
(
"Preamp
\n
"
);
preamp_text
->
SetLabel
(
preamp
+
wx
T
(
psz_val
)
+
wxT
(
"dB"
)
);
preamp_text
->
SetLabel
(
preamp
+
wx
U
(
psz_val
)
+
wxT
(
"dB"
)
);
if
(
p_aout
==
NULL
)
{
...
...
@@ -709,7 +709,7 @@ void ExtraPanel::OnChangeEqualizer( wxScrollEvent &event )
sprintf
(
psz_values
,
"%s %f"
,
psz_values
,
f_val
);
sprintf
(
psz_val
,
"%.1f"
,
f_val
);
band_texts
[
i
]
->
SetLabel
(
band_frequencies
[
i
]
+
wxT
(
"
\n
"
)
+
wx
T
(
psz_val
)
+
wxT
(
"dB"
)
);
wx
U
(
psz_val
)
+
wxT
(
"dB"
)
);
}
if
(
p_aout
==
NULL
)
{
...
...
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