This commit is contained in:
Jman012 2014-02-16 16:50:57 -08:00
parent 00d44597f0
commit 00f38c8deb
3 changed files with 3 additions and 3 deletions

View File

@ -415,7 +415,7 @@ int m_set_usertyping(Messenger *m, int friendnumber, uint8_t is_typing);
/* Get the typing status of a friend. /* Get the typing status of a friend.
* *
* returns 0 if friend is not typing. * returns 0 if friend is not typing.
* returns -1 if friend is typing. * returns 1 if friend is typing.
*/ */
uint8_t m_get_istyping(Messenger *m, int friendnumber); uint8_t m_get_istyping(Messenger *m, int friendnumber);

View File

@ -285,7 +285,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing)
/* Get the typing status of a friend. /* Get the typing status of a friend.
* *
* returns 0 if friend is not typing. * returns 0 if friend is not typing.
* returns -1 if friend is typing. * returns 1 if friend is typing.
*/ */
int tox_get_is_typing(Tox *tox, int friendnumber) int tox_get_is_typing(Tox *tox, int friendnumber)
{ {

View File

@ -292,7 +292,7 @@ int tox_set_user_is_typing(Tox *tox, int friendnumber, uint8_t is_typing);
/* Get the typing status of a friend. /* Get the typing status of a friend.
* *
* returns 0 if friend is not typing. * returns 0 if friend is not typing.
* returns -1 if friend is typing. * returns 1 if friend is typing.
*/ */
int tox_get_is_typing(Tox *tox, int friendnumber); int tox_get_is_typing(Tox *tox, int friendnumber);