diff options
author | Orgad Shaneh <[email protected]> | 2013-05-21 20:54:26 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2013-05-24 12:21:26 +0200 |
commit | fd48f081c60675a101080fcd296916986eac242c (patch) | |
tree | 5f3f9ee291ea49db3bdc0747eafb4659d26b20e6 /src/plugins/cvs/cvsplugin.cpp | |
parent | a439d12b4877f1e53c6d30f8d700f90d4ed73df0 (diff) |
VCS: Remove unused extension parameter from editors
Change-Id: I17e73e269698af0d515f668d3c272a748cdca3bb
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r-- | src/plugins/cvs/cvsplugin.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index e2caf4abf3a..ec809a1dedd 100644 --- a/src/plugins/cvs/cvsplugin.cpp +++ b/src/plugins/cvs/cvsplugin.cpp @@ -120,25 +120,22 @@ static const VcsBaseEditorParameters editorParameters[] = { "CVS Command Log Editor", // id QT_TRANSLATE_NOOP("VCS", "CVS Command Log Editor"), // display name "CVS Command Log Editor", // context - "application/vnd.nokia.text.scs_cvs_commandlog", - "scslog"}, + "application/vnd.nokia.text.scs_cvs_commandlog"}, { LogOutput, "CVS File Log Editor", // id QT_TRANSLATE_NOOP("VCS", "CVS File Log Editor"), // display name "CVS File Log Editor", // context - "application/vnd.nokia.text.scs_cvs_filelog", - "scsfilelog"}, + "application/vnd.nokia.text.scs_cvs_filelog"}, { AnnotateOutput, "CVS Annotation Editor", // id QT_TRANSLATE_NOOP("VCS", "CVS Annotation Editor"), // display name "CVS Annotation Editor", // context - "application/vnd.nokia.text.scs_cvs_annotation", - "scsannotate"}, + "application/vnd.nokia.text.scs_cvs_annotation"}, { DiffOutput, "CVS Diff Editor", // id QT_TRANSLATE_NOOP("VCS", "CVS Diff Editor"), // display name "CVS Diff Editor", // context - "text/x-patch","diff"} + "text/x-patch"} }; // Utility to find a parameter set by type |