summaryrefslogtreecommitdiff
path: root/src/plugins/clearcase
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-03-19 18:27:04 +0100
committerhjk <hjk121@nokiamail.com>2013-04-04 16:47:59 +0200
commitfe29d6a8a31efe4857e4cfbc876da52c179eee89 (patch)
tree420250c0765edd8dcb58d7b707e738c81606f1c8 /src/plugins/clearcase
parent52575f1c62e97efd934c394d29c636cf80250674 (diff)
downloadqt-creator-fe29d6a8a31efe4857e4cfbc876da52c179eee89.tar.gz
Core: Remove Core::Id(QByteArray) constructor
This was mostly used to disambiguate the char * and the QString constructors. Change-Id: Ib6923ef8e8c0e5d514a883e73aa001a1cd9fb534 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/clearcase')
-rw-r--r--src/plugins/clearcase/clearcaseplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/clearcase/clearcaseplugin.cpp b/src/plugins/clearcase/clearcaseplugin.cpp
index 9a7e10dd75..04442011c0 100644
--- a/src/plugins/clearcase/clearcaseplugin.cpp
+++ b/src/plugins/clearcase/clearcaseplugin.cpp
@@ -1291,7 +1291,7 @@ Core::IEditor *ClearCasePlugin::showOutputInEditor(const QString& title, const Q
{
const VcsBase::VcsBaseEditorParameters *params = findType(editorType);
QTC_ASSERT(params, return 0);
- const Core::Id id = Core::Id(QByteArray(params->id));
+ const Core::Id id = params->id;
if (ClearCase::Constants::debug)
qDebug() << "ClearCasePlugin::showOutputInEditor" << title << id.name()
<< "Size= " << output.size() << " Type=" << editorType << debugCodec(codec);