Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ab1e2b52
Commit
ab1e2b52
authored
Aug 01, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Why are this variable unused ? (commented out for the moment as it memleak)
parent
924bda62
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+3
-3
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
ab1e2b52
...
...
@@ -853,7 +853,7 @@ Equalizer::~Equalizer()
/* Write down initial values */
void
Equalizer
::
updateUIFromCore
()
{
char
*
psz_af
,
*
psz_bands
;
char
*
psz_af
;
//, *psz_bands; Don't use it ?
float
f_preamp
;
int
i_preset
;
...
...
@@ -864,7 +864,7 @@ void Equalizer::updateUIFromCore()
psz_af
=
var_GetNonEmptyString
(
p_aout
,
"audio-filter"
);
if
(
var_GetBool
(
p_aout
,
"equalizer-2pass"
)
)
ui
.
eq2PassCheck
->
setChecked
(
true
);
psz_bands
=
var_GetNonEmptyString
(
p_aout
,
"equalizer-bands"
);
//
psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
f_preamp
=
var_GetFloat
(
p_aout
,
"equalizer-preamp"
);
i_preset
=
presetsComboBox
->
findData
(
QVariant
(
var_GetString
(
p_aout
,
"equalizer-preset"
)
)
);
...
...
@@ -875,7 +875,7 @@ void Equalizer::updateUIFromCore()
psz_af
=
config_GetPsz
(
p_intf
,
"audio-filter"
);
if
(
config_GetInt
(
p_intf
,
"equalizer-2pass"
)
)
ui
.
eq2PassCheck
->
setChecked
(
true
);
psz_bands
=
config_GetPsz
(
p_intf
,
"equalizer-bands"
);
//
psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
f_preamp
=
config_GetFloat
(
p_intf
,
"equalizer-preamp"
);
i_preset
=
presetsComboBox
->
findData
(
QVariant
(
config_GetPsz
(
p_intf
,
"equalizer-preset"
)
)
);
...
...
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