diff options
author | Orgad Shaneh <[email protected]> | 2013-10-06 20:52:09 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2013-10-10 18:59:50 +0200 |
commit | 2da85dc68673aacb8f9d015699c8b2b188117562 (patch) | |
tree | 130fdd44672854a7bc01e9f9f600d26c4efe7084 /src/plugins/cvs/cvsplugin.cpp | |
parent | 7b08d993bff0951428d6a7cb2d402e9571df0550 (diff) |
VCS: Rename diffBaseDirectory -> workingDirectory
Can have other usages than diff
Change-Id: Ieb01a88eb95503ac89b2f2c1120eddf404cdce5a
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r-- | src/plugins/cvs/cvsplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index 646bc6b0871..adbde2d7df2 100644 --- a/src/plugins/cvs/cvsplugin.cpp +++ b/src/plugins/cvs/cvsplugin.cpp @@ -503,7 +503,7 @@ void CvsPlugin::diffCommitFiles(const QStringList &files) static void setDiffBaseDirectory(IEditor *editor, const QString &db) { if (VcsBaseEditorWidget *ve = qobject_cast<VcsBaseEditorWidget*>(editor->widget())) - ve->setDiffBaseDirectory(db); + ve->setWorkingDirectory(db); } // Collect all parameters required for a diff to be able to associate them |