summaryrefslogtreecommitdiff
path: root/libpurple/protocols.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-12-12 01:05:05 -0600
committerGary Kramlich <grim@reaperworld.com>2022-12-12 01:05:05 -0600
commit6c17122f4311836c46d8f3bf6e5775d829cf749f (patch)
treed0cc5da784526e920e71bfe97eccdbbd22eda329 /libpurple/protocols.h
parentf2146a02029c2eef40ea42adaae8a2b76148ff91 (diff)
downloadpidgin-6c17122f4311836c46d8f3bf6e5775d829cf749f.tar.gz
Move the PurplePresence::login-time property from time_t to GDateTime
I also removed some API that was related and not being used. Testing Done: Ran the tests, connected an account, tried to verify via the tooltip, but the field wasn't displayed. Reviewed at https://reviews.imfreedom.org/r/2115/
Diffstat (limited to 'libpurple/protocols.h')
-rw-r--r--libpurple/protocols.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/libpurple/protocols.h b/libpurple/protocols.h
index 247a128073..6572d9660c 100644
--- a/libpurple/protocols.h
+++ b/libpurple/protocols.h
@@ -54,18 +54,6 @@ void purple_protocol_got_account_idle(PurpleAccount *account, gboolean idle,
time_t idle_time);
/**
- * purple_protocol_got_account_login_time:
- * @account: The account the user is on.
- * @login_time: The user's log-in time.
- *
- * Notifies Purple of our account's log-in time.
- *
- * This is meant to be called from protocols.
- */
-void purple_protocol_got_account_login_time(PurpleAccount *account,
- time_t login_time);
-
-/**
* purple_protocol_got_account_status:
* @account: The account the user is on.
* @status_id: The status ID.
@@ -126,19 +114,6 @@ void purple_protocol_got_user_idle(PurpleAccount *account, const char *name,
gboolean idle, time_t idle_time);
/**
- * purple_protocol_got_user_login_time:
- * @account: The account the user is on.
- * @name: The name of the buddy.
- * @login_time: The user's log-in time.
- *
- * Notifies Purple of a buddy's log-in time.
- *
- * This is meant to be called from protocols.
- */
-void purple_protocol_got_user_login_time(PurpleAccount *account,
- const char *name, time_t login_time);
-
-/**
* purple_protocol_got_user_status:
* @account: The account the user is on.
* @name: The name of the buddy.