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
303033c7
Commit
303033c7
authored
Apr 05, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Preferences: rename slot too
parent
93322f91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/preferences.cpp
+3
-3
modules/gui/qt4/dialogs/preferences.hpp
modules/gui/qt4/dialogs/preferences.hpp
+2
-2
No files found.
modules/gui/qt4/dialogs/preferences.cpp
View file @
303033c7
...
...
@@ -135,13 +135,13 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
||
var_InheritBool
(
p_intf
,
"advanced"
)
)
setAdvanced
();
else
setS
mall
();
setS
imple
();
BUTTONACT
(
save
,
save
()
);
BUTTONACT
(
cancel
,
cancel
()
);
BUTTONACT
(
reset
,
reset
()
);
BUTTONACT
(
simple
,
setS
mall
()
);
BUTTONACT
(
simple
,
setS
imple
()
);
BUTTONACT
(
all
,
setAdvanced
()
);
resize
(
780
,
sizeHint
().
height
()
);
...
...
@@ -197,7 +197,7 @@ void PrefsDialog::setAdvanced()
setWindowTitle
(
qtr
(
"Advanced Preferences"
)
);
}
void
PrefsDialog
::
setS
mall
()
void
PrefsDialog
::
setS
imple
()
{
/* If no simple_tree, create one, connect it */
if
(
!
simple_tree
)
...
...
modules/gui/qt4/dialogs/preferences.hpp
View file @
303033c7
...
...
@@ -73,13 +73,13 @@ private:
QCheckBox
*
current_filter
;
QGroupBox
*
types
;
QRadioButton
*
s
mall
,
*
all
;
QRadioButton
*
s
imple
,
*
all
;
bool
b_small
;
private
slots
:
void
setAdvanced
();
void
setS
mall
();
void
setS
imple
();
void
changeAdvPanel
(
QTreeWidgetItem
*
);
void
changeSimplePanel
(
int
);
...
...
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