qulogic/pidgin

Parents 153015687b87
Children 219476bf3322
Make sure all of the idle API is marked with the proper version

I compared these against a checkout of the v2.0.0 tag and using the girlint
stylesheet to verify.

Testing Done:
Asked the turtles for help.

Bugs closed: PIDGIN-17838

Reviewed at https://reviews.imfreedom.org/r/2728/
--- a/libpurple/idle.h Thu Oct 26 06:16:29 2023 -0500
+++ b/libpurple/idle.h Thu Oct 26 06:17:28 2023 -0500
@@ -44,7 +44,10 @@
* Touch our idle tracker. This signifies that the user is
* 'active'. The conversation code calls this when the
* user sends an IM, for example.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_idle_touch(void);
/**
@@ -53,7 +56,10 @@
* Fake our idle time by setting the time at which our
* accounts purportedly became idle. This is used by
* the I'dle Mak'er plugin.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_idle_set(time_t time);
/**************************************************************************/
@@ -88,14 +94,20 @@
* purple_idle_init:
*
* Initializes the idle system.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_idle_init(void);
/**
* purple_idle_uninit:
*
* Uninitializes the idle system.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_idle_uninit(void);
G_END_DECLS