forked from qt-creator/qt-creator
		
	Core::Filemanager: make some methods static
This follows suit to the ICore changes. Change-Id: Iba2de1b1e3f2574fd1459892eae702e6af1cc7dc Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
		| @@ -179,10 +179,9 @@ VcsManager::~VcsManager() | ||||
| void VcsManager::extensionsInitialized() | ||||
| { | ||||
|     // Change signal connections | ||||
|     FileManager *fileManager = ICore::fileManager(); | ||||
|     foreach (IVersionControl *versionControl, allVersionControls()) { | ||||
|         connect(versionControl, SIGNAL(filesChanged(QStringList)), | ||||
|                 fileManager, SIGNAL(filesChangedInternally(QStringList))); | ||||
|                 FileManager::instance(), SIGNAL(filesChangedInternally(QStringList))); | ||||
|         connect(versionControl, SIGNAL(repositoryChanged(QString)), | ||||
|                 this, SIGNAL(repositoryChanged(QString))); | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user