aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2013-05-22 21:32:07 +0300
committerOrgad Shaneh <orgads@gmail.com>2013-05-24 12:29:34 +0200
commita9d9d444940dcef7076b59772d7f6f92f29b8d6a (patch)
tree189039ede0ca2e8655e0b6346c42eac96c58aa52 /src/plugins/cvs
parent05ef32f242154a46a40680e76f67e9888be687bd (diff)
VCS: Rename RegularCommandOutput to OtherContent
Change-Id: I37d47c79f0efaf51eb5afd1fe529aacfadff8ee1 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/cvs')
-rw-r--r--src/plugins/cvs/cvseditor.cpp2
-rw-r--r--src/plugins/cvs/cvsplugin.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cvs/cvseditor.cpp b/src/plugins/cvs/cvseditor.cpp
index b0eccfe5962..f5a35394409 100644
--- a/src/plugins/cvs/cvseditor.cpp
+++ b/src/plugins/cvs/cvseditor.cpp
@@ -101,7 +101,7 @@ QString CvsEditor::changeUnderCursor(const QTextCursor &c) const
// Check if we are at the beginning of a line within a reasonable offset.
// 2) Log: check for lines like "revision 1.1", cursor past "revision"
switch (contentType()) {
- case VcsBase::RegularCommandOutput:
+ case VcsBase::OtherContent:
case VcsBase::DiffOutput:
break;
case VcsBase::AnnotateOutput: {
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;
}