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
59984e4f
Commit
59984e4f
authored
Jan 14, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: fix indentation
parent
921a659c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+9
-10
No files found.
modules/gui/qt4/menus.cpp
View file @
59984e4f
...
...
@@ -564,17 +564,17 @@ void VLCMenuBar::ExtensionsMenu( intf_thread_t *p_intf, QMenu *extMenu )
static
inline
void
VolumeEntries
(
intf_thread_t
*
p_intf
,
QMenu
*
current
)
{
current
->
addSeparator
();
current
->
addSeparator
();
QAction
*
action
=
current
->
addAction
(
qtr
(
"Increase Volume"
),
QAction
*
action
=
current
->
addAction
(
qtr
(
"Increase Volume"
),
ActionsManager
::
getInstance
(
p_intf
),
SLOT
(
AudioUp
()
)
);
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
action
=
current
->
addAction
(
qtr
(
"Decrease Volume"
),
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
action
=
current
->
addAction
(
qtr
(
"Decrease Volume"
),
ActionsManager
::
getInstance
(
p_intf
),
SLOT
(
AudioDown
()
)
);
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
action
=
current
->
addAction
(
qtr
(
"Mute"
),
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
action
=
current
->
addAction
(
qtr
(
"Mute"
),
ActionsManager
::
getInstance
(
p_intf
),
SLOT
(
toggleMuteAudio
()
)
);
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
action
->
setData
(
VLCMenuBar
::
ACTION_STATIC
);
}
/**
...
...
@@ -870,9 +870,8 @@ void VLCMenuBar::PopupMenuPlaylistControlEntries( QMenu *menu,
{
bool
bEnable
=
THEMIM
->
getInput
()
!=
NULL
;
bool
bPlaylistEmpty
=
THEMIM
->
hasEmptyPlaylist
();
QAction
*
action
=
addMIMStaticEntry
(
p_intf
,
menu
,
qtr
(
"&Stop"
),
":/menu/stop"
,
SLOT
(
stop
()
),
true
);
QAction
*
action
=
addMIMStaticEntry
(
p_intf
,
menu
,
qtr
(
"&Stop"
),
":/menu/stop"
,
SLOT
(
stop
()
),
true
);
/* Disable Stop in the right-click popup menu */
if
(
!
bEnable
)
action
->
setEnabled
(
false
);
...
...
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