diff options
author | Oswald Buddenhagen <[email protected]> | 2011-03-30 13:45:16 +0200 |
---|---|---|
committer | Oswald Buddenhagen <[email protected]> | 2011-04-18 14:10:13 +0200 |
commit | f1f9904d3578fd6790f0598e58cf6e2b5628eb50 (patch) | |
tree | fb6acc20015abb95462801c2a640db9b34fa24f1 /src/plugins/cmakeprojectmanager/cmakeproject.cpp | |
parent | 469199e7a549086059ce1d7a6600ea3fdd317c80 (diff) |
add errorString output argument to IFile::save()
this centralizes error reporting (in fact, in most cases it adds any in
the first place).
Task-number: QTCREATORBUG-1619
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakeproject.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp index 28886c55865..3cb0ae49f7c 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp @@ -735,10 +735,11 @@ CMakeFile::CMakeFile(CMakeProject *parent, QString fileName) } -bool CMakeFile::save(const QString &fileName) +bool CMakeFile::save(QString *errorString, const QString &fileName) { // Once we have an texteditor open for this file, we probably do // need to implement this, don't we. + Q_UNUSED(errorString) Q_UNUSED(fileName) return false; } |