forked from qt-creator/qt-creator
LinuxDevice: Implement runProcess()
Change-Id: I5300d36119ffb9fdd82a2ba7e02f76edc0fe2eda Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -61,6 +61,7 @@ public:
|
||||
QString host() const { return url.host(); }
|
||||
quint16 port() const { return url.port(); }
|
||||
QString userName() const { return url.userName(); }
|
||||
QString userAtHost() const { return userName().isEmpty() ? host() : userName() + '@' + host(); }
|
||||
void setHost(const QString &host) { url.setHost(host); }
|
||||
void setPort(int port) { url.setPort(port); }
|
||||
void setUserName(const QString &name) { url.setUserName(name); }
|
||||
|
||||
Reference in New Issue
Block a user