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/clearcase/clearcaseplugin.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/clearcase/clearcaseplugin.cpp')
-rw-r--r-- | src/plugins/clearcase/clearcaseplugin.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/plugins/clearcase/clearcaseplugin.cpp b/src/plugins/clearcase/clearcaseplugin.cpp index 8b777401547..6abdf0196af 100644 --- a/src/plugins/clearcase/clearcaseplugin.cpp +++ b/src/plugins/clearcase/clearcaseplugin.cpp @@ -125,25 +125,22 @@ static const VcsBase::VcsBaseEditorParameters editorParameters[] = { "ClearCase Command Log Editor", // id QT_TRANSLATE_NOOP("VCS", "ClearCase Command Log Editor"), // display name "ClearCase Command Log Editor", // context - "application/vnd.audc.text.scs_cc_commandlog", - "scslog"}, + "application/vnd.audc.text.scs_cc_commandlog"}, { VcsBase::LogOutput, "ClearCase File Log Editor", // id QT_TRANSLATE_NOOP("VCS", "ClearCase File Log Editor"), // display_name "ClearCase File Log Editor", // context - "application/vnd.audc.text.scs_cc_filelog", - "scsfilelog"}, + "application/vnd.audc.text.scs_cc_filelog"}, { VcsBase::AnnotateOutput, "ClearCase Annotation Editor", // id QT_TRANSLATE_NOOP("VCS", "ClearCase Annotation Editor"), // display_name "ClearCase Annotation Editor", // context - "application/vnd.audc.text.scs_cc_annotation", - "scsannotate"}, + "application/vnd.audc.text.scs_cc_annotation"}, { VcsBase::DiffOutput, "ClearCase Diff Editor", // id QT_TRANSLATE_NOOP("VCS", "ClearCase Diff Editor"), // display_name "ClearCase Diff Editor", // context - "text/x-patch","diff"} + "text/x-patch"} }; // Utility to find a parameter set by type |