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
671f1b22
Commit
671f1b22
authored
Oct 06, 2009
by
dt
Browse files
Ensure that the qmake path is without backslashes
parent
74f66a3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
671f1b22
...
...
@@ -529,7 +529,7 @@ void QtVersion::setName(const QString &name)
void
QtVersion
::
setQMakeCommand
(
const
QString
&
qmakeCommand
)
{
m_qmakeCommand
=
qmakeCommand
;
m_qmakeCommand
=
QDir
::
fromNativeSeparators
(
qmakeCommand
)
;
#ifdef Q_OS_WIN
m_qmakeCommand
=
m_qmakeCommand
.
toLower
();
#endif
...
...
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