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
951123a2
Commit
951123a2
authored
Nov 15, 2010
by
Tobias Hunger
Browse files
Symbian: Allow installer to set SBS v2 directory
Allow the installer to specify the SBS v2 directory. Reviewed-by: Tim Jenssen
parent
542fdc07
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
951123a2
...
...
@@ -381,6 +381,8 @@ void QtVersionManager::addNewVersionsFromInstaller()
version
->
setMwcDirectory
(
QDir
::
fromNativeSeparators
(
newVersionData
[
5
]));
if
(
newVersionData
.
count
()
>=
7
)
version
->
setMsvcVersion
(
newVersionData
[
6
]);
if
(
newVersionData
.
count
()
>=
8
)
version
->
setSbsV2Path
(
QDir
::
fromNativeSeparators
(
newVersionData
[
7
]));
bool
versionWasAlreadyInList
=
false
;
foreach
(
const
QtVersion
*
const
it
,
m_versions
)
{
...
...
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