Vcs: Separate plugin and QObject parent roles for VcsSubmitEditorFactory

These are different when the factories are used as real members,
as already done in Bazaar.

Change-Id: I3c187896dcbacb5156be1543424ccacb9140a493
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
hjk
2020-02-06 15:52:30 +01:00
parent e4738904d9
commit 9c02a11039
8 changed files with 11 additions and 9 deletions

View File

@@ -367,7 +367,7 @@ GitPluginPrivate::GitPluginPrivate()
for (int i = 0; i < editorCount; i++)
new VcsEditorFactory(editorParameters + i, widgetCreator, describeFunc, this);
new VcsSubmitEditorFactory(submitParameters, [] { return new GitSubmitEditor; }, this);
new VcsSubmitEditorFactory(submitParameters, [] { return new GitSubmitEditor; }, this, this);
const QString prefix = "git";
m_commandLocator = new CommandLocator("Git", prefix, prefix, this);