aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2016-01-14 14:45:01 +0100
committerEike Ziller <[email protected]>2016-01-14 14:40:45 +0000
commitcfc89a685e96653f48f27647a13766d29c60a186 (patch)
tree911cfd890e456f7c41c0870988e961b383c9ea50 /src/plugins/cvs/cvsplugin.cpp
parent66088a799adbdfadaa3cb3f18a004890df39a111 (diff)
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 <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index 661e4584a41..2a5a8d13ba7 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -1195,7 +1195,7 @@ IEditor *CvsPlugin::showOutputInEditor(const QString& title, const QString &outp
if (!e)
return 0;
s.replace(QLatin1Char(' '), QLatin1Char('_'));
- e->textDocument()->setSuggestedFileName(s);
+ e->textDocument()->setFallbackSaveAsFileName(s);
e->setForceReadOnly(true);
if (!source.isEmpty())
e->setSource(source);