Skip to content

Commit

Permalink
Removed now deprecated function.
Browse files Browse the repository at this point in the history
  • Loading branch information
irungentoo committed Aug 24, 2014
1 parent 43723f2 commit 08bdf45
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
9 changes: 0 additions & 9 deletions toxcore/tox.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,15 +324,6 @@ uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber)
return m_get_istyping(m, friendnumber);
}

/* Sets whether we send read receipts for friendnumber.
* This function is not lazy, and it will fail if yesno is not (0 or 1).
*/
void tox_set_sends_receipts(Tox *tox, int32_t friendnumber, int yesno)
{
Messenger *m = tox;
m_set_sends_receipts(m, friendnumber, yesno);
}

/* Return the number of friends in the instance m.
* You should use this to determine how much memory to allocate
* for copy_friendlist. */
Expand Down
5 changes: 0 additions & 5 deletions toxcore/tox.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,6 @@ int tox_set_user_is_typing(Tox *tox, int32_t friendnumber, uint8_t is_typing);
*/
uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber);

/* Sets whether we send read receipts for friendnumber.
* This function is not lazy, and it will fail if yesno is not (0 or 1).
*/
void tox_set_sends_receipts(Tox *tox, int32_t friendnumber, int yesno);

/* Return the number of friends in the instance m.
* You should use this to determine how much memory to allocate
* for copy_friendlist. */
Expand Down

0 comments on commit 08bdf45

Please sign in to comment.