From c9012704cc53d5d29342972e98ae975b085cba45 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Tue, 9 Nov 2021 19:07:04 +0100 Subject: [PATCH] ApplicationLauncher: remove unused bringToForeground() Surprisingly, it was also unimplemented. Change-Id: I7845d321fd11c34cf70c944000657d9f782f0a5e Reviewed-by: Qt CI Bot Reviewed-by: hjk --- src/plugins/projectexplorer/applicationlauncher.cpp | 1 - src/plugins/projectexplorer/applicationlauncher.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/plugins/projectexplorer/applicationlauncher.cpp b/src/plugins/projectexplorer/applicationlauncher.cpp index 4e9ae25d753..383ea7a30cb 100644 --- a/src/plugins/projectexplorer/applicationlauncher.cpp +++ b/src/plugins/projectexplorer/applicationlauncher.cpp @@ -83,7 +83,6 @@ public: void cannotRetrieveLocalDebugOutput(); void checkLocalDebugOutput(qint64 pid, const QString &message); void localProcessDone(int, QProcess::ExitStatus); - void bringToForeground(); qint64 applicationPID() const; bool isRunning() const; diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h index 1dcefb6cf3f..86b9c6f3cf3 100644 --- a/src/plugins/projectexplorer/applicationlauncher.h +++ b/src/plugins/projectexplorer/applicationlauncher.h @@ -64,7 +64,6 @@ public: QString errorString() const; QProcess::ProcessError processError() const; - void bringToForeground(); static QString msgWinCannotRetrieveDebuggingOutput();