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
|
class DEBUGGER_EXPORT RemoteSetupResult
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RemoteSetupResult()
|
int gdbServerPort = InvalidPort;
|
||||||
: gdbServerPort(InvalidPort),
|
int qmlServerPort = InvalidPort;
|
||||||
qmlServerPort(InvalidPort),
|
qint64 inferiorPid = InvalidPid;
|
||||||
inferiorPid(InvalidPid),
|
bool success = false;
|
||||||
success(false)
|
|
||||||
{}
|
|
||||||
|
|
||||||
int gdbServerPort;
|
|
||||||
int qmlServerPort;
|
|
||||||
qint64 inferiorPid;
|
|
||||||
bool success;
|
|
||||||
QString reason;
|
QString reason;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user