Skip to content
Snippets Groups Projects
Commit 200b0658 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Compile fix for gcc 3.3

parent 65996524
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ void GenericProjectNode::refresh() ...@@ -95,7 +95,7 @@ void GenericProjectNode::refresh()
QFileInfo fileInfo(absoluteFileName); QFileInfo fileInfo(absoluteFileName);
const QString absoluteFilePath = fileInfo.path(); const QString absoluteFilePath = fileInfo.path();
QString baseDir(QFileInfo(path()).absolutePath()); QString baseDir = QFileInfo(path()).absolutePath();
if (! absoluteFilePath.startsWith(baseDir)) if (! absoluteFilePath.startsWith(baseDir))
continue; // `file' is not part of the project. continue; // `file' is not part of the project.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment