forked from qt-creator/qt-creator
Vcs: Rename VcsBasePluginPrivate to VersionControlBase
The classes derived from this had a dual role of implementing the version control interface (IVersionControl) and as the plugin pimpls. The name was focusing on the latter, but plugin pimpls are being phased out in the new 'setupFoo()' world, so only the version control interface part remains. Change-Id: I60396f1729c736bc6c9e4fca250a5926e9d60f51 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -436,7 +436,7 @@ void VcsBaseSubmitEditor::setDescriptionMandatory(bool v)
|
||||
|
||||
enum { checkDialogMinimumWidth = 500 };
|
||||
|
||||
void VcsBaseSubmitEditor::accept(VcsBasePluginPrivate *plugin)
|
||||
void VcsBaseSubmitEditor::accept(VersionControlBase *plugin)
|
||||
{
|
||||
auto submitWidget = static_cast<SubmitEditorWidget *>(this->widget());
|
||||
|
||||
@@ -457,7 +457,7 @@ void VcsBaseSubmitEditor::close()
|
||||
EditorManager::closeDocuments({document()});
|
||||
}
|
||||
|
||||
bool VcsBaseSubmitEditor::promptSubmit(VcsBasePluginPrivate *plugin)
|
||||
bool VcsBaseSubmitEditor::promptSubmit(VersionControlBase *plugin)
|
||||
{
|
||||
if (d->m_disablePrompt)
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user