Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Elisa
Commits
75a5e2d6
Commit
75a5e2d6
authored
Oct 11, 2020
by
Matthieu Gallien
🎵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use clang-tidy to add auto as data type for variable declarations
parent
86b998d6
Pipeline
#40071
canceled with stage
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/elisaapplication.cpp
src/elisaapplication.cpp
+1
-1
No files found.
src/elisaapplication.cpp
View file @
75a5e2d6
...
...
@@ -524,7 +524,7 @@ bool ElisaApplication::eventFilter(QObject *object, QEvent *event)
{
Q_UNUSED
(
object
)
QKeyEvent
*
keyEvent
=
static_cast
<
QKeyEvent
*>
(
event
);
auto
*
keyEvent
=
static_cast
<
QKeyEvent
*>
(
event
);
auto
playPauseAction
=
d
->
mCollection
.
action
(
tr
(
"Play-Pause"
));
if
(
keyEvent
->
key
()
==
Qt
::
Key_Space
&&
playPauseAction
->
shortcut
()[
0
]
==
Qt
::
Key_Space
)
{
return
true
;
...
...
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