QmlJSDebugger: Split library up into a debugger & observer part

This allows us to enable/disable the experimental observer, independent
from the core javascript-debugger functionality.

Reviewed-by: Christiaan Janssen
This commit is contained in:
Kai Koehne
2010-09-22 13:03:37 +02:00
parent 02171c7ccf
commit 4ab1c88ba0
11 changed files with 49 additions and 22 deletions

View File

@@ -525,7 +525,7 @@ QStringList Qt4BuildConfiguration::removeQMLInspectorFromArgumentList(const QStr
{
QStringList result;
foreach (const QString &str, old)
if (!str.startsWith(QLatin1String(Constants::QMAKEVAR_QMLOBSERVER_PATH)))
if (!str.startsWith(QLatin1String(Constants::QMAKEVAR_QMLJSDEBUGGER_PATH)))
result << str;
return result;
}