From 08bdf45aa3aa2663916a97cbe417e1adf6762ed6 Mon Sep 17 00:00:00 2001 From: irungentoo Date: Sat, 23 Aug 2014 21:51:45 -0400 Subject: [PATCH] Removed now deprecated function. --- toxcore/tox.c | 9 --------- toxcore/tox.h | 5 ----- 2 files changed, 14 deletions(-) diff --git a/toxcore/tox.c b/toxcore/tox.c index a43a9554..775fa4cb 100644 --- a/toxcore/tox.c +++ b/toxcore/tox.c @@ -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. */ diff --git a/toxcore/tox.h b/toxcore/tox.h index c9a6bc70..5810c128 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h @@ -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. */