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
c5cac927
Commit
c5cac927
authored
Feb 19, 2010
by
dt
Browse files
Simpler
parent
821d4941
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4target.cpp
View file @
c5cac927
...
...
@@ -121,7 +121,7 @@ bool Qt4TargetFactory::canCreate(ProjectExplorer::Project *parent, const QString
Qt4Target
*
Qt4TargetFactory
::
create
(
ProjectExplorer
::
Project
*
parent
,
const
QString
&
id
)
{
return
create
(
parent
,
id
,
QList
<
QtVersion
*>
()
<<
0
);
return
create
(
parent
,
id
,
QList
<
QtVersion
*>
());
}
Qt4Target
*
Qt4TargetFactory
::
create
(
ProjectExplorer
::
Project
*
parent
,
const
QString
&
id
,
QList
<
QtVersion
*>
versions
)
...
...
@@ -136,7 +136,6 @@ Qt4Target *Qt4TargetFactory::create(ProjectExplorer::Project *parent, const QStr
if
(
knownVersions
.
isEmpty
())
return
t
;
versions
.
removeAll
(
0
);
if
(
versions
.
isEmpty
())
versions
.
append
(
knownVersions
.
at
(
0
));
...
...
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