Refactoring: Move QtVersionManager to ProjectExplorer.

The Debugger, cmake and Qt4 plugin all need it. More refactoring to it
coming.
This commit is contained in:
dt
2009-04-22 14:52:35 +02:00
parent ef8e69d96a
commit 8f22417244
26 changed files with 185 additions and 164 deletions

View File

@@ -38,9 +38,13 @@
#include <coreplugin/icore.h>
#include <coreplugin/mainwindow.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <QtGui/QFileDialog>
using ProjectExplorer::QtVersionManager;
using ProjectExplorer::QtVersion;
namespace {
bool debug = false;
}
@@ -91,7 +95,7 @@ Qt4ProjectConfigWidget::~Qt4ProjectConfigWidget()
void Qt4ProjectConfigWidget::manageQtVersions()
{
Core::ICore *core = Core::ICore::instance();
core->showOptionsDialog(Constants::QT_CATEGORY, Constants::QTVERSION_PAGE);
core->showOptionsDialog(ProjectExplorer::Constants::QT_CATEGORY, ProjectExplorer::Constants::QTVERSION_PAGE);
}