1
0
forked from 0ad/0ad

Address concerns of 5f0a0fbbef

Patch by: Dunedan
Differential Revision: https://code.wildfiregames.com/D1378
This was SVN commit r21508.
This commit is contained in:
Imarok 2018-03-11 18:32:17 +00:00
parent 32e3faae76
commit 3e964b813a
2 changed files with 2 additions and 2 deletions

View File

@ -342,7 +342,7 @@ gloox::ConnectionError glooxwrapper::Client::recv(int timeout)
return m_Wrapped->recv(timeout);
}
std::string glooxwrapper::Client::getID()
const glooxwrapper::string glooxwrapper::Client::getID() const
{
return m_Wrapped->getID();
}

View File

@ -394,7 +394,7 @@ namespace glooxwrapper
bool connect(bool block = true);
gloox::ConnectionError recv(int timeout = -1);
std::string getID();
const string getID() const;
void send(const IQ& iq);
void setTls(gloox::TLSPolicy tls);