forked from qt-creator/qt-creator
		
	Rename IRunConfigurationRunner -> IRunControlFactory...
and ApplicationRunConfiguration to LocalApplicationRunConfiguration, preparing remote debugging. Change the interface canRun() to be const, run() to create() (since it does not run anything), use references to the QSharedPointer<Foo>. Introduce d-Pointer and remove unneeded headers from ProjectExplorerPlugin and add missing includes everywhere.
This commit is contained in:
		@@ -35,7 +35,6 @@
 | 
			
		||||
#include <coreplugin/editormanager/ieditorfactory.h>
 | 
			
		||||
#include <coreplugin/icorelistener.h>
 | 
			
		||||
#include <extensionsystem/iplugin.h>
 | 
			
		||||
#include <projectexplorer/projectexplorer.h>
 | 
			
		||||
 | 
			
		||||
#include <QtCore/QObject>
 | 
			
		||||
#include <QtCore/QProcess>
 | 
			
		||||
@@ -44,6 +43,7 @@
 | 
			
		||||
QT_BEGIN_NAMESPACE
 | 
			
		||||
class QFile;
 | 
			
		||||
class QAction;
 | 
			
		||||
class QFileInfo;
 | 
			
		||||
QT_END_NAMESPACE
 | 
			
		||||
 | 
			
		||||
namespace Core {
 | 
			
		||||
@@ -87,8 +87,8 @@ public:
 | 
			
		||||
 | 
			
		||||
    static GitPlugin *instance();
 | 
			
		||||
 | 
			
		||||
    bool initialize(const QStringList &arguments, QString *error_message);
 | 
			
		||||
    void extensionsInitialized();
 | 
			
		||||
    virtual bool initialize(const QStringList &arguments, QString *error_message);
 | 
			
		||||
    virtual void extensionsInitialized();
 | 
			
		||||
 | 
			
		||||
    QString getWorkingDirectory();
 | 
			
		||||
 | 
			
		||||
@@ -160,7 +160,6 @@ private:
 | 
			
		||||
    QAction *m_stashListAction;
 | 
			
		||||
    QAction *m_branchListAction;
 | 
			
		||||
 | 
			
		||||
    ProjectExplorer::ProjectExplorerPlugin *m_projectExplorer;
 | 
			
		||||
    GitClient                   *m_gitClient;
 | 
			
		||||
    ChangeSelectionDialog       *m_changeSelectionDialog;
 | 
			
		||||
    QString                     m_submitRepository;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user