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
811466a2
Commit
811466a2
authored
Feb 22, 2011
by
dt
Browse files
Repalce QDir::absolutePath with QDir::cleanPath
Qt 4.8 behaves differently. Task-Nr: QTCREATORBUG-3849
parent
89884d82
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4project.cpp
View file @
811466a2
...
...
@@ -780,7 +780,7 @@ QString Qt4Project::defaultTopLevelBuildDirectory(const QString &profilePath)
if
(
profilePath
.
isEmpty
())
return
QString
();
QFileInfo
info
(
profilePath
);
return
QDir
(
projectDirectory
(
profilePath
)
+
QLatin1String
(
"/../"
)
+
info
.
baseName
()
+
QLatin1String
(
"-build"
))
.
absolutePath
()
;
return
QDir
::
cleanPath
(
projectDirectory
(
profilePath
)
+
QLatin1String
(
"/../"
)
+
info
.
baseName
()
+
QLatin1String
(
"-build"
));
}
void
Qt4Project
::
asyncUpdate
()
...
...
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