Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tobias Hunger
qt-creator
Commits
6bc0da69
Commit
6bc0da69
authored
Dec 03, 2008
by
qtc-commiter@nokia.com
Committed by
dt
Dec 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes: Fix crash on windows while loading projects.pro.
Task: Reported by eskil on irc.
parent
f8def2e2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/plugins/qt4projectmanager/profilereader.cpp
src/plugins/qt4projectmanager/profilereader.cpp
+1
-1
src/plugins/qt4projectmanager/qt4nodes.cpp
src/plugins/qt4projectmanager/qt4nodes.cpp
+2
-2
No files found.
src/plugins/qt4projectmanager/profilereader.cpp
View file @
6bc0da69
src/plugins/qt4projectmanager/qt4nodes.cpp
View file @
6bc0da69
...
...
@@ -883,12 +883,12 @@ QStringList Qt4ProFileNode::subDirsPaths(ProFileReader *reader) const
QString
realFile
;
const
QString
subDirKey
=
subDirVar
+
QLatin1String
(
".subdir"
);
if
(
reader
->
contains
(
subDirKey
))
realDir
=
reader
->
value
(
subDirKey
);
realDir
=
QFileInfo
(
reader
->
value
(
subDirKey
)).
filePath
(
);
else
realDir
=
subDirVar
;
QFileInfo
info
(
realDir
);
if
(
!
info
.
isAbsolute
())
realDir
=
QString
(
"%1/%2"
).
arg
(
m_projectDir
,
realDir
)
;
realDir
=
m_projectDir
+
"/"
+
realDir
;
#ifdef QTEXTENDED_QBUILD_SUPPORT
// QBuild only uses project files named qbuild.pro, and subdirs are implied
...
...
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