forked from qt-creator/qt-creator
		
	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 <orgads@gmail.com>
This commit is contained in:
		@@ -295,7 +295,7 @@ QueryContext::QueryContext(const QString &query,
 | 
			
		||||
    connect(&m_process, &QProcess::errorOccurred, this, &QueryContext::processError);
 | 
			
		||||
    connect(&m_watcher, &QFutureWatcherBase::canceled, this, &QueryContext::terminate);
 | 
			
		||||
    m_watcher.setFuture(m_progress.future());
 | 
			
		||||
    m_process.setProcessEnvironment(Git::Internal::GitPlugin::client()->processEnvironment());
 | 
			
		||||
    m_process.setProcessEnvironment(Git::Internal::GitPluginPrivate::client()->processEnvironment());
 | 
			
		||||
    m_progress.setProgressRange(0, 1);
 | 
			
		||||
 | 
			
		||||
    m_timer.setInterval(timeOutMS);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user