Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
c0455ef7
Commit
c0455ef7
authored
Aug 10, 2016
by
Jan Möbius
Browse files
Fixed misleading indentation warning
parent
767d03f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Core/Core.cc
View file @
c0455ef7
...
...
@@ -1288,14 +1288,14 @@ void Core::slotSetSlotDescription(QString _slotName, QString _slotDescrip
//handle plugin slots
//find plugin
PluginInfo
*
pluginInfo
=
0
;
PluginInfo
*
pluginInfo
=
0
;
for
(
uint
i
=
0
;
i
<
plugins_
.
size
();
i
++
)
if
(
plugins_
[
i
].
plugin
==
sender
())
pluginInfo
=
&
plugins_
[
i
];
if
(
pluginInfo
==
0
){
emit
log
(
LOGERR
,
tr
(
"Unable to set slot-description. Plugin not found!"
));
if
(
pluginInfo
==
0
){
emit
log
(
LOGERR
,
tr
(
"Unable to set slot-description. Plugin not found!"
));
return
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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