aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2013-05-22 21:32:07 +0300
committerOrgad Shaneh <[email protected]>2013-05-24 12:29:34 +0200
commita9d9d444940dcef7076b59772d7f6f92f29b8d6a (patch)
tree189039ede0ca2e8655e0b6346c42eac96c58aa52 /src/plugins/cvs/cvsplugin.cpp
parent05ef32f242154a46a40680e76f67e9888be687bd (diff)
VCS: Rename RegularCommandOutput to OtherContent
Change-Id: I37d47c79f0efaf51eb5afd1fe529aacfadff8ee1 Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index e36f26473ef..00454c6089f 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -116,7 +116,7 @@ static const char CMD_ID_REPOSITORYUPDATE[] = "CVS.RepositoryUpdate";
static const VcsBaseEditorParameters editorParameters[] = {
{
- RegularCommandOutput,
+ OtherContent,
"CVS Command Log Editor", // id
QT_TRANSLATE_NOOP("VCS", "CVS Command Log Editor"), // display name
"CVS Command Log Editor", // context
@@ -1022,7 +1022,7 @@ bool CvsPlugin::status(const QString &topLevel, const QStringList &files, const
runCvs(topLevel, args, m_settings.timeOutMS(), 0);
const bool ok = response.result == CvsResponse::Ok;
if (ok)
- showOutputInEditor(title, response.stdOut, RegularCommandOutput, topLevel, 0);
+ showOutputInEditor(title, response.stdOut, OtherContent, topLevel, 0);
return ok;
}