Merge remote branch 'origin/1.3'

This commit is contained in:
Oswald Buddenhagen
2009-12-04 21:20:20 +01:00
2 changed files with 4 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ GccParser::GccParser()
m_regExpLinker.setMinimal(true);
//make[4]: Entering directory `/home/kkoehne/dev/ide-explorer/src/plugins/qtscripteditor'
m_makeDir.setPattern("^make.*: (\\w+) directory .(.+).$");
m_makeDir.setPattern("^(?:mingw32-)?make.*: (\\w+) directory .(.+).$");
m_makeDir.setMinimal(true);
}

View File

@@ -584,8 +584,10 @@ void Qt4PriFileNode::changeFiles(const FileType fileType,
*notChanged = filePaths;
// Check for modified editors
if (!saveModifiedEditors(m_projectFilePath))
if (!saveModifiedEditors(m_projectFilePath)) {
delete reader;
return;
}
// Check if file is readonly
ProEditorModel proModel;