diff --git a/src/plugins/debugger/debuggerengine.h b/src/plugins/debugger/debuggerengine.h index 251126214fa..13ddc1c7820 100644 --- a/src/plugins/debugger/debuggerengine.h +++ b/src/plugins/debugger/debuggerengine.h @@ -88,13 +88,10 @@ public: QString coreFile; QString overrideStartScript; // Used in attach to core and remote debugging QString startMessage; // First status message shown. - QByteArray remoteSourcesDir; - QString remoteMountPoint; QMap sourcePathMap; QString debugInfoLocation; // Gdb "set-debug-file-directory". QStringList debugSourceLocation; // Gdb "directory" QString serverStartScript; - QString localMountDir; ProjectExplorer::IDevice::ConstPtr device; bool isSnapshot = false; // Set if created internally. diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index d531fe44467..a8d0fd4b854 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2302,11 +2302,6 @@ static QString formatStartParameters(DebuggerRunParameters &sp) << sp.qmlServerPort << '\n'; if (!sp.remoteChannel.isEmpty()) { str << "Remote: " << sp.remoteChannel << '\n'; - if (!sp.remoteSourcesDir.isEmpty()) - str << "Remote sources: " << sp.remoteSourcesDir << '\n'; - if (!sp.remoteMountPoint.isEmpty()) - str << "Remote mount point: " << sp.remoteMountPoint - << " Local: " << sp.localMountDir << '\n'; } str << "Sysroot: " << sp.sysRoot << '\n'; str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1Char(':')) << '\n';