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
53cfd445
Commit
53cfd445
authored
Feb 12, 2010
by
Tobias Hunger
Browse files
Unify slashes we get when parsing mkspec files on windows
parent
916df010
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
53cfd445
...
...
@@ -1149,6 +1149,8 @@ void QtVersion::updateToolChainAndMkspec() const
const
QList
<
QByteArray
>
&
temp
=
line
.
split
(
'='
);
if
(
temp
.
size
()
==
2
)
{
mkspecFullPath
=
temp
.
at
(
1
).
trimmed
();
// We sometimes get a mix of different slash styles here...
mkspecFullPath
=
mkspecFullPath
.
replace
(
'\\'
,
'/'
);
}
break
;
}
...
...
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