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
Tobias Hunger
qt-creator
Commits
bdb998eb
Commit
bdb998eb
authored
Dec 14, 2010
by
hjk
Browse files
qtversionmanager: initialize m_isBuildUsingSbsV2
Done by Milian Wolff
parent
133feaae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
bdb998eb
...
...
@@ -550,7 +550,8 @@ QtVersion::QtVersion(const QString &name, const QString &qmakeCommand, int id,
m_defaultConfigIsDebugAndRelease
(
true
),
m_hasExamples
(
false
),
m_hasDemos
(
false
),
m_hasDocumentation
(
false
)
m_hasDocumentation
(
false
),
m_isBuildUsingSbsV2
(
false
)
{
if
(
id
==
-
1
)
m_id
=
getUniqueId
();
...
...
@@ -574,7 +575,8 @@ QtVersion::QtVersion(const QString &name, const QString &qmakeCommand,
m_defaultConfigIsDebugAndRelease
(
true
),
m_hasExamples
(
false
),
m_hasDemos
(
false
),
m_hasDocumentation
(
false
)
m_hasDocumentation
(
false
),
m_isBuildUsingSbsV2
(
false
)
{
m_id
=
getUniqueId
();
setQMakeCommand
(
qmakeCommand
);
...
...
@@ -594,7 +596,8 @@ QtVersion::QtVersion(const QString &qmakeCommand, bool isAutodetected, const QSt
m_defaultConfigIsDebugAndRelease
(
true
),
m_hasExamples
(
false
),
m_hasDemos
(
false
),
m_hasDocumentation
(
false
)
m_hasDocumentation
(
false
),
m_isBuildUsingSbsV2
(
false
)
{
m_id
=
getUniqueId
();
setQMakeCommand
(
qmakeCommand
);
...
...
@@ -614,7 +617,8 @@ QtVersion::QtVersion()
m_defaultConfigIsDebugAndRelease
(
true
),
m_hasExamples
(
false
),
m_hasDemos
(
false
),
m_hasDocumentation
(
false
)
m_hasDocumentation
(
false
),
m_isBuildUsingSbsV2
(
false
)
{
setQMakeCommand
(
QString
());
}
...
...
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