diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-01 13:35:15 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-02 12:34:06 +0000 |
commit | ff0ce27c1f7a51174dcced6cd925ec3e74c2564e (patch) | |
tree | 4b7400a37026f94ad0874f8e95209564b40359b9 /src/plugins/debugger/qml/qmlengine.cpp | |
parent | 14d39b871daa7cccc5920945f19309545f6a9103 (diff) | |
download | qt-creator-ff0ce27c1f7a51174dcced6cd925ec3e74c2564e.tar.gz |
ApplicationLauncher: Unify API
Make the API more similar to QtcProcess API.
Rename:
processStarted() -> started()
error() -> errorOccurred()
processError() -> error()
Change-Id: I86d650d55a643f5999fc91e56b985f699e2d7245
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 883289bb9f..11d41d6e6a 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -273,7 +273,7 @@ QmlEngine::QmlEngine() this, &QmlEngine::disconnected); connect(&d->applicationLauncher, &ApplicationLauncher::appendMessage, this, &QmlEngine::appMessage); - connect(&d->applicationLauncher, &ApplicationLauncher::processStarted, + connect(&d->applicationLauncher, &ApplicationLauncher::started, this, &QmlEngine::handleLauncherStarted); debuggerConsole()->populateFileFinder(); |