diff options
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index bd1bf4078f..96e0bd662c 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -156,9 +156,9 @@ private: void SetContactStatus(MCONTACT hContact, WORD status);
void SetAllContactsStatus(WORD status);
- MCONTACT FindContact(const std::string &id);
+ MCONTACT FindContact(const std::vector<uint8_t> &id);
MCONTACT FindContact(const int friendNumber);
- MCONTACT AddContact(const std::string &id, bool isTemporary = false);
+ MCONTACT AddContact(const std::vector<uint8_t> &id, bool isTemporary = false);
MCONTACT GetContactFromAuthEvent(HANDLE hEvent);
|