diff options
author | hjk <[email protected]> | 2013-01-18 11:35:38 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2013-01-18 15:56:23 +0100 |
commit | 7fafeaa513becad586c5011e90738fb43a1f80b0 (patch) | |
tree | 0090bb19bbcab01f9dba53d00d38336df033d06e /src/plugins/clearcase/clearcaseplugin.cpp | |
parent | 51273ab864ee418fda4043e7bee0496ac68f4467 (diff) |
CommandLocator: use Id instead of QString.
There seems to be still disagreement in the code what the
individual parameters are meant for.
Change-Id: I9c51e6ee9cc8fd1a55d202b8131027de1ef812a0
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'src/plugins/clearcase/clearcaseplugin.cpp')
-rw-r--r-- | src/plugins/clearcase/clearcaseplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/clearcase/clearcaseplugin.cpp b/src/plugins/clearcase/clearcaseplugin.cpp index a9adb9e0c51..048d50a2347 100644 --- a/src/plugins/clearcase/clearcaseplugin.cpp +++ b/src/plugins/clearcase/clearcaseplugin.cpp @@ -301,7 +301,7 @@ bool ClearCasePlugin::initialize(const QStringList & /*arguments */, QString *er const QString description = QLatin1String("ClearCase"); const QString prefix = QLatin1String("cc"); // register cc prefix in Locator - m_commandLocator = new Locator::CommandLocator(prefix, description, prefix); + m_commandLocator = new Locator::CommandLocator("cc", description, prefix); addAutoReleasedObject(m_commandLocator); //register actions |