mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
Gcc complained about superfluous const qualifier
This commit is contained in:
parent
1b0b280f3a
commit
e9ec4df36f
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public:
|
||||||
const QUuid& getUUID() const { return _uuid; }
|
const QUuid& getUUID() const { return _uuid; }
|
||||||
void setUUID(const QUuid& uuid);
|
void setUUID(const QUuid& uuid);
|
||||||
|
|
||||||
const Node::LocalID getLocalID() const { return _localID; }
|
Node::LocalID getLocalID() const { return _localID; }
|
||||||
void setLocalID(Node::LocalID localID) { _localID = localID; }
|
void setLocalID(Node::LocalID localID) { _localID = localID; }
|
||||||
|
|
||||||
QString getHostname() const { return _domainURL.host(); }
|
QString getHostname() const { return _domainURL.host(); }
|
||||||
|
|
Loading…
Reference in a new issue