forked from qt-creator/qt-creator
Debugger: Modernize RemoteSetupResult construction
Change-Id: I414fd2b55e632d7b200c1b3691df087cb83e8a95 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -55,17 +55,10 @@ const qint64 InvalidPid = -1;
|
||||
class DEBUGGER_EXPORT RemoteSetupResult
|
||||
{
|
||||
public:
|
||||
RemoteSetupResult()
|
||||
: gdbServerPort(InvalidPort),
|
||||
qmlServerPort(InvalidPort),
|
||||
inferiorPid(InvalidPid),
|
||||
success(false)
|
||||
{}
|
||||
|
||||
int gdbServerPort;
|
||||
int qmlServerPort;
|
||||
qint64 inferiorPid;
|
||||
bool success;
|
||||
int gdbServerPort = InvalidPort;
|
||||
int qmlServerPort = InvalidPort;
|
||||
qint64 inferiorPid = InvalidPid;
|
||||
bool success = false;
|
||||
QString reason;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user