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
Marco Bubke
flatpak-qt-creator
Commits
651eb338
Commit
651eb338
authored
Nov 19, 2009
by
dt
Browse files
Remove a unecessary QDir::toNativeSeparators()
Reviewed-by:
Tobias Hunger
<
qt-info@nokia.com
>
parent
3bd33607
Changes
2
Show whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/cesdkhandler.cpp
View file @
651eb338
...
...
@@ -49,7 +49,6 @@ void CeSdkInfo::addToEnvironment(Environment &env)
env
.
set
(
"INCLUDE"
,
m_include
);
env
.
set
(
"LIB"
,
m_lib
);
env
.
prependOrSetPath
(
m_bin
);
qDebug
()
<<
env
.
toStringList
();
}
CeSdkHandler
::
CeSdkHandler
()
...
...
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
651eb338
...
...
@@ -1275,7 +1275,7 @@ void QtVersion::setMsvcVersion(const QString &version)
void
QtVersion
::
addToEnvironment
(
ProjectExplorer
::
Environment
&
env
)
const
{
env
.
set
(
"QTDIR"
,
QDir
::
toNativeSeparators
(
versionInfo
().
value
(
"QT_INSTALL_DATA"
)));
env
.
prependOrSetPath
(
QDir
::
toNativeSeparators
(
versionInfo
().
value
(
"QT_INSTALL_BINS"
))
)
;
env
.
prependOrSetPath
(
versionInfo
().
value
(
"QT_INSTALL_BINS"
));
}
int
QtVersion
::
uniqueId
()
const
...
...
Write
Preview
Supports
Markdown
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