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
655ba178
Commit
655ba178
authored
May 11, 2020
by
Jan
Browse files
Revert one change as it is only available after Qt5.14
parent
61e4c4f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Core/PluginLoader.cc
View file @
655ba178
...
...
@@ -317,7 +317,8 @@ void Core::loadPlugins()
*/
{
QStringList
list
=
QString
::
fromUtf8
(
cmake
::
static_plugins
).
split
(
"
\n
"
);
QSet
<
QString
>
staticPlugins
=
QSet
<
QString
>
(
list
.
begin
(),
list
.
end
());
// This warning couöld be fixed when the minimal Qt Version is >= 5.14
QSet
<
QString
>
staticPlugins
=
QSet
<
QString
>::
fromList
(
list
);
for
(
int
i
=
0
;
i
<
pluginlist
.
size
();
)
{
const
QString
bn
=
QFileInfo
(
pluginlist
[
i
]).
fileName
();
if
(
staticPlugins
.
contains
(
bn
))
{
...
...
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