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
Tobias Hunger
qt-creator
Commits
b9b262f1
Commit
b9b262f1
authored
Mar 19, 2009
by
dt
Browse files
Fixes: Break up those lines to make them also more readeable.
parent
824265d4
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
b9b262f1
...
...
@@ -314,8 +314,10 @@ void Qt4RunConfiguration::updateTarget()
}
// Extract data
QString
relSubDir
=
QFileInfo
(
project
()
->
file
()
->
fileName
()).
absoluteDir
().
relativeFilePath
(
QFileInfo
(
m_proFilePath
).
path
());
QString
baseDir
=
QDir
(
project
()
->
buildDirectory
(
project
()
->
activeBuildConfiguration
())).
absoluteFilePath
(
relSubDir
);
QDir
baseProjectDirectory
=
QFileInfo
(
project
()
->
file
()
->
fileName
()).
absoluteDir
();
QString
relSubDir
=
baseProjectDirectory
.
relativeFilePath
(
QFileInfo
(
m_proFilePath
).
path
());
QDir
baseBuildDirectory
=
project
()
->
buildDirectory
(
project
()
->
activeBuildConfiguration
());
QString
baseDir
=
baseBuildDirectory
.
absoluteFilePath
(
relSubDir
);
//qDebug()<<relSubDir<<baseDir;
...
...
Write
Preview
Markdown
is supported
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