diff options
author | hjk <[email protected]> | 2020-01-23 17:22:05 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2020-01-24 09:47:28 +0000 |
commit | 1cd936c53145f520fb9a3817a6548d9d25c399f0 (patch) | |
tree | 2c1cc9c375b986b5d9a7abf3f982781256ae612d /src/plugins/clearcase/clearcasesync.cpp | |
parent | 01e4f573e812c9c855a11d0cb199f9d9bed8de49 (diff) |
Vcs: Pimpl plugins
Essentially rename all *Plugin into *PluginPrivate, and pull out
the actual IPlugin related pieces into new *Plugin classes.
Shift the construction of the PluginPrivate to initialize(),
following the general pattern.
I tried to keep the patch as mechanical as possible, giving
room to some obvious but less mechanical cleanup needs,
that are intentionally left out of this here.
Change-Id: Iac662bf73338f9f7669064ed67b960246875c23c
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/clearcase/clearcasesync.cpp')
-rw-r--r-- | src/plugins/clearcase/clearcasesync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/clearcase/clearcasesync.cpp b/src/plugins/clearcase/clearcasesync.cpp index 2b871a01339..7466e2acd96 100644 --- a/src/plugins/clearcase/clearcasesync.cpp +++ b/src/plugins/clearcase/clearcasesync.cpp @@ -41,7 +41,7 @@ namespace ClearCase { namespace Internal { -ClearCaseSync::ClearCaseSync(ClearCasePlugin *plugin, QSharedPointer<StatusMap> statusMap) : +ClearCaseSync::ClearCaseSync(ClearCasePluginPrivate *plugin, QSharedPointer<StatusMap> statusMap) : m_plugin(plugin), m_statusMap(statusMap) { } |