summaryrefslogtreecommitdiff
path: root/src/plugins/android/androidmanifestdocument.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2016-01-14 14:45:01 +0100
committerEike Ziller <eike.ziller@theqtcompany.com>2016-01-14 14:40:45 +0000
commitcfc89a685e96653f48f27647a13766d29c60a186 (patch)
tree911cfd890e456f7c41c0870988e961b383c9ea50 /src/plugins/android/androidmanifestdocument.cpp
parent66088a799adbdfadaa3cb3f18a004890df39a111 (diff)
downloadqt-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/android/androidmanifestdocument.cpp')
-rw-r--r--src/plugins/android/androidmanifestdocument.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/android/androidmanifestdocument.cpp b/src/plugins/android/androidmanifestdocument.cpp
index 275e8db74c..07d1259aaa 100644
--- a/src/plugins/android/androidmanifestdocument.cpp
+++ b/src/plugins/android/androidmanifestdocument.cpp
@@ -59,12 +59,12 @@ bool AndroidManifestDocument::save(QString *errorString, const QString &fileName
return result;
}
-QString AndroidManifestDocument::defaultPath() const
+QString AndroidManifestDocument::fallbackSaveAsPath() const
{
return filePath().toFileInfo().absolutePath();
}
-QString AndroidManifestDocument::suggestedFileName() const
+QString AndroidManifestDocument::fallbackSaveAsFileName() const
{
return filePath().fileName();
}