forked from qt-creator/qt-creator
unify application launcher between platforms
purge abstractprocess and winguiprocess. they serve no purpose. applications can have stdio on windows as well, in addition to the windows debug channel. Task-number: QTCREATORBUG-4822
This commit is contained in:
@@ -54,7 +54,6 @@
|
||||
#include <projectexplorer/applicationlauncher.h>
|
||||
|
||||
#include <utils/environment.h>
|
||||
#include <utils/abstractprocess.h>
|
||||
#include <utils/qtcassert.h>
|
||||
#include <utils/fileinprojectfinder.h>
|
||||
|
||||
@@ -295,7 +294,7 @@ bool QmlEngine::canDisplayTooltip() const
|
||||
void QmlEngine::filterApplicationMessage(const QString &msg, int /*channel*/)
|
||||
{
|
||||
static const QString qddserver = QLatin1String("QDeclarativeDebugServer: ");
|
||||
static const QString cannotRetrieveDebuggingOutput = Utils::AbstractProcess::msgWinCannotRetrieveDebuggingOutput();
|
||||
static const QString cannotRetrieveDebuggingOutput = ApplicationLauncher::msgWinCannotRetrieveDebuggingOutput();
|
||||
|
||||
const int index = msg.indexOf(qddserver);
|
||||
if (index != -1) {
|
||||
|
||||
Reference in New Issue
Block a user