forked from qt-creator/qt-creator
Valgrind: Remove dialog asking for IP address.
When running the memcheck tool remotely, it sends its data via a TCP socket to the development host, so it needs to know that machine's IP address. The current code gathers all local network addresses and makes the user choose one of them. However, we can get that information from the SSH connection, so no user interaction is required. Change-Id: Ia61decddd5fa1e285ca143605d944d6d9275b3e4 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -58,6 +58,7 @@ public:
|
||||
QString valgrindExecutable() const;
|
||||
void setValgrindExecutable(const QString &executable);
|
||||
QStringList valgrindArguments() const;
|
||||
QStringList fullValgrindArguments() const;
|
||||
void setValgrindArguments(const QStringList &toolArguments);
|
||||
QString debuggeeExecutable() const;
|
||||
void setDebuggeeExecutable(const QString &executable);
|
||||
@@ -97,6 +98,7 @@ protected slots:
|
||||
virtual void processError(QProcess::ProcessError);
|
||||
virtual void processStarted();
|
||||
virtual void processFinished(int, QProcess::ExitStatus);
|
||||
virtual void localHostAddressRetrieved(const QHostAddress &localHostAddress);
|
||||
|
||||
private:
|
||||
class Private;
|
||||
|
||||
Reference in New Issue
Block a user