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
00e3654a
Commit
00e3654a
authored
Oct 29, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Remove excessive debug.
parent
4d27e757
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+1
-1
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/preferences.cpp
+3
-5
No files found.
modules/gui/qt4/components/simple_preferences.cpp
View file @
00e3654a
...
@@ -381,7 +381,6 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
...
@@ -381,7 +381,6 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
void
SPrefsPanel
::
updateAudioOptions
(
int
number
)
void
SPrefsPanel
::
updateAudioOptions
(
int
number
)
{
{
QString
value
=
audioOutput
->
itemData
(
number
).
toString
();
QString
value
=
audioOutput
->
itemData
(
number
).
toString
();
msg_Dbg
(
p_intf
,
"I was here, waiting for funman, %s"
,
qtu
(
value
)
);
#ifndef WIN32
#ifndef WIN32
oss_options
->
hide
();
oss_options
->
hide
();
...
@@ -408,6 +407,7 @@ void SPrefsPanel::apply()
...
@@ -408,6 +407,7 @@ void SPrefsPanel::apply()
{
{
msg_Dbg
(
p_intf
,
"Trying to save the %i simple panel"
,
number
);
msg_Dbg
(
p_intf
,
"Trying to save the %i simple panel"
,
number
);
/* Generic save for ever panel */
QList
<
ConfigControl
*>::
Iterator
i
;
QList
<
ConfigControl
*>::
Iterator
i
;
for
(
i
=
controls
.
begin
()
;
i
!=
controls
.
end
()
;
i
++
)
for
(
i
=
controls
.
begin
()
;
i
!=
controls
.
end
()
;
i
++
)
{
{
...
...
modules/gui/qt4/dialogs/preferences.cpp
View file @
00e3654a
...
@@ -268,15 +268,13 @@ void PrefsDialog::apply()
...
@@ -268,15 +268,13 @@ void PrefsDialog::apply()
{
{
if
(
small
->
isChecked
()
&&
simple_tree
)
if
(
small
->
isChecked
()
&&
simple_tree
)
{
{
msg_Dbg
(
p_intf
,
"I was here, helping you or not..."
);
for
(
int
i
=
0
;
i
<
SPrefsMax
;
i
++
){
for
(
int
i
=
0
;
i
<
SPrefsMax
;
i
++
){
if
(
simple_panels
[
i
]
){
simple_panels
[
i
]
->
apply
();
if
(
simple_panels
[
i
]
)
simple_panels
[
i
]
->
apply
();
msg_Dbg
(
p_intf
,
"I was here, helping you or not...2"
);}
}
}
}
}
else
if
(
all
->
isChecked
()
&&
advanced_tree
)
else
if
(
all
->
isChecked
()
&&
advanced_tree
)
advanced_tree
->
applyAll
();
advanced_tree
->
applyAll
();
msg_Dbg
(
p_intf
,
"I was here, helping your"
);
config_SaveConfigFile
(
p_intf
,
NULL
);
config_SaveConfigFile
(
p_intf
,
NULL
);
/* Delete the other panel in order to force its reload after clicking
/* Delete the other panel in order to force its reload after clicking
...
...
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