Refactoring: Move all the debugging helper static methods into a class

Enables me to move some stuff back again.
This commit is contained in:
dt
2009-04-24 16:21:51 +02:00
parent 84637dfc55
commit 48fe0f450f
3 changed files with 78 additions and 72 deletions

View File

@@ -141,8 +141,8 @@ void CMakeRunConfiguration::setArguments(const QString &newText)
QString CMakeRunConfiguration::dumperLibrary() const
{
QString qmakePath = ProjectExplorer::QtVersionManager::findSystemQt(environment());
QString dhl = ProjectExplorer::QtVersionManager::debuggingHelperLibrary(qmakePath);
QString qmakePath = ProjectExplorer::DebuggingHelperLibrary::findSystemQt(environment());
QString dhl = ProjectExplorer::DebuggingHelperLibrary::debuggingHelperLibrary(qmakePath);
return dhl;
}