Skip to content
GitLab
Menu
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
76008cda
Commit
76008cda
authored
Aug 30, 2010
by
Tobias Hunger
Browse files
Do not save unconfigured Qt versions
Do not save Qt versions without a qmake set. Makes no sense to keep those.
parent
8de03ac2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtoptionspage.cpp
View file @
76008cda
...
@@ -748,7 +748,12 @@ void QtOptionsPageWidget::updateCurrentGcceDirectory()
...
@@ -748,7 +748,12 @@ void QtOptionsPageWidget::updateCurrentGcceDirectory()
QList
<
QSharedPointerQtVersion
>
QtOptionsPageWidget
::
versions
()
const
QList
<
QSharedPointerQtVersion
>
QtOptionsPageWidget
::
versions
()
const
{
{
return
m_versions
;
QList
<
QSharedPointerQtVersion
>
result
;
for
(
int
i
=
0
;
i
<
m_versions
.
count
();
++
i
)
{
if
(
m_versions
.
at
(
i
)
->
qmakeCommand
()
!=
m_specifyPathString
)
result
.
append
(
m_versions
.
at
(
i
));
}
return
result
;
}
}
QString
QtOptionsPageWidget
::
searchKeywords
()
const
QString
QtOptionsPageWidget
::
searchKeywords
()
const
...
...
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