forked from organicmaps/organicmaps
Missing const and log.
This commit is contained in:
parent
7344df35c3
commit
68cce57100
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@
|
|||
namespace osm
|
||||
{
|
||||
|
||||
ServerApi06::ServerApi06(OsmOAuth & auth)
|
||||
ServerApi06::ServerApi06(OsmOAuth const & auth)
|
||||
: m_auth(auth)
|
||||
{
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ bool ServerApi06::ModifyNode(string const & nodeXml, uint64_t nodeId) const
|
|||
if (response.first == OsmOAuth::ResponseCode::OK)
|
||||
return true;
|
||||
|
||||
LOG(LWARNING, ("ModifyNode request has failed:", response.first));
|
||||
LOG(LWARNING, ("ModifyNode request has failed:", response.first, response.second));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ public:
|
|||
ECanNotBeDeleted
|
||||
};
|
||||
|
||||
ServerApi06(OsmOAuth & auth);
|
||||
ServerApi06(OsmOAuth const & auth);
|
||||
/// This function can be used to check if user did not confirm email validation link after registration.
|
||||
/// @returns OK if user exists, NotFound if it is not, and ServerError if there is no connection.
|
||||
OsmOAuth::ResponseCode TestUserExists(string const & userName);
|
||||
|
|
Loading…
Add table
Reference in a new issue