forked from qt-creator/qt-creator
DebuggerRunParameters: Remove remoteSourcesDir, [remote|local]MountPoint
Those variables are unused except for debugging output since more than
1 year.
ed1483741e
Change-Id: I052fd042901401641c784eb66ab017a8f31f844e
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -88,13 +88,10 @@ public:
|
|||||||
QString coreFile;
|
QString coreFile;
|
||||||
QString overrideStartScript; // Used in attach to core and remote debugging
|
QString overrideStartScript; // Used in attach to core and remote debugging
|
||||||
QString startMessage; // First status message shown.
|
QString startMessage; // First status message shown.
|
||||||
QByteArray remoteSourcesDir;
|
|
||||||
QString remoteMountPoint;
|
|
||||||
QMap<QString, QString> sourcePathMap;
|
QMap<QString, QString> sourcePathMap;
|
||||||
QString debugInfoLocation; // Gdb "set-debug-file-directory".
|
QString debugInfoLocation; // Gdb "set-debug-file-directory".
|
||||||
QStringList debugSourceLocation; // Gdb "directory"
|
QStringList debugSourceLocation; // Gdb "directory"
|
||||||
QString serverStartScript;
|
QString serverStartScript;
|
||||||
QString localMountDir;
|
|
||||||
ProjectExplorer::IDevice::ConstPtr device;
|
ProjectExplorer::IDevice::ConstPtr device;
|
||||||
bool isSnapshot = false; // Set if created internally.
|
bool isSnapshot = false; // Set if created internally.
|
||||||
|
|
||||||
|
@@ -2302,11 +2302,6 @@ static QString formatStartParameters(DebuggerRunParameters &sp)
|
|||||||
<< sp.qmlServerPort << '\n';
|
<< sp.qmlServerPort << '\n';
|
||||||
if (!sp.remoteChannel.isEmpty()) {
|
if (!sp.remoteChannel.isEmpty()) {
|
||||||
str << "Remote: " << sp.remoteChannel << '\n';
|
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 << "Sysroot: " << sp.sysRoot << '\n';
|
||||||
str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1Char(':')) << '\n';
|
str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1Char(':')) << '\n';
|
||||||
|
Reference in New Issue
Block a user