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
Marco Bubke
flatpak-qt-creator
Commits
cf40fdcc
Commit
cf40fdcc
authored
Sep 08, 2010
by
dt
Browse files
Plugin Manager: -Fix -noload to actually not load the plugin
parent
7873cabd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/extensionsystem/pluginspec.cpp
View file @
cf40fdcc
...
...
@@ -830,11 +830,12 @@ bool PluginSpecPrivate::resolveDependencies(const QList<PluginSpec *> &specs)
void
PluginSpecPrivate
::
disableIndirectlyIfDependencyDisabled
()
{
disabledIndirectly
=
false
;
if
(
!
enabled
)
return
;
if
(
disabledIndirectly
)
return
;
foreach
(
PluginSpec
*
dependencySpec
,
dependencySpecs
)
{
if
(
dependencySpec
->
isDisabledIndirectly
()
||
!
dependencySpec
->
isEnabled
())
{
disabledIndirectly
=
true
;
...
...
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