diff options
author | Eike Ziller <eike.ziller@theqtcompany.com> | 2016-01-14 14:45:01 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@theqtcompany.com> | 2016-01-14 14:40:45 +0000 |
commit | cfc89a685e96653f48f27647a13766d29c60a186 (patch) | |
tree | 911cfd890e456f7c41c0870988e961b383c9ea50 /src/plugins/qmlprojectmanager/qmlprojectfile.cpp | |
parent | 66088a799adbdfadaa3cb3f18a004890df39a111 (diff) | |
download | qt-creator-cfc89a685e96653f48f27647a13766d29c60a186.tar.gz |
IDocument: Rename defaultPath and suggestedFileName
To fallbackSaveAsPath and fallbackSaveAsFileName. That makes it clearer
what they are for, and that they actually belong to each other.
Change-Id: Ie5b83b9db77d39a7fe9e979cc8f22b7f5b9101a3
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlprojectfile.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlprojectfile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlprojectfile.cpp b/src/plugins/qmlprojectmanager/qmlprojectfile.cpp index 61a36c025b..7c5ef83ebb 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectfile.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectfile.cpp @@ -51,12 +51,12 @@ bool QmlProjectFile::save(QString *, const QString &, bool) return false; } -QString QmlProjectFile::defaultPath() const +QString QmlProjectFile::fallbackSaveAsPath() const { return QString(); } -QString QmlProjectFile::suggestedFileName() const +QString QmlProjectFile::fallbackSaveAsFileName() const { return QString(); } |