summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2019-05-09 21:50:05 -0500
committerGary Kramlich <grim@reaperworld.com>2019-05-09 21:50:05 -0500
commit99b5a0ace143bd7019d4a80f74d867553ee2c8b7 (patch)
tree95c0da9ffc3b477d23c26807f64a688ddc8acf64
parent2e74855502e59fdb71ad968316f97dd9e5ad0b23 (diff)
downloadpidgin-99b5a0ace143bd7019d4a80f74d867553ee2c8b7.tar.gz
Replace ChangeLog.API entries with Since tags from PidginContactCompletion
-rw-r--r--ChangeLog.API4
-rw-r--r--pidgin/pidgincontactcompletion.h6
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog.API b/ChangeLog.API
index 61a2782df5..297ad6d519 100644
--- a/ChangeLog.API
+++ b/ChangeLog.API
@@ -556,10 +556,6 @@ version 3.0.0 (??/??/????):
Pidgin:
Added:
- * PidginContactCompletion
- * pidgin_contact_completion_new
- * pidgin_contact_completion_get_account
- * pidgin_contact_completion_set_account
* pidgin_create_webview
* PidginDockletFlag
* pidgin_gdk_pixbuf_new_from_image
diff --git a/pidgin/pidgincontactcompletion.h b/pidgin/pidgincontactcompletion.h
index d72e6c811d..7b813df951 100644
--- a/pidgin/pidgincontactcompletion.h
+++ b/pidgin/pidgincontactcompletion.h
@@ -59,6 +59,8 @@ G_DECLARE_FINAL_TYPE(PidginContactCompletion, pidgin_contact_completion, PIDGIN,
* Creates a new #GtkEntryCompletion for looking up contacts.
*
* Returns: (transfer full): The new #GtkEntryCompletion instance.
+ *
+ * Since: 3.0.0
*/
GtkEntryCompletion *pidgin_contact_completion_new(void);
@@ -71,6 +73,8 @@ GtkEntryCompletion *pidgin_contact_completion_new(void);
*
* Returns: (transfer full) (nullable): The #PurpleAccount that's being
* filtered for.
+ *
+ * Since: 3.0.0
*/
PurpleAccount *pidgin_contact_completion_get_account(PidginContactCompletion *completion);
@@ -81,6 +85,8 @@ PurpleAccount *pidgin_contact_completion_get_account(PidginContactCompletion *co
*
* Set the #PurpleAccount that @completion should filter for. If @account is
* %NULL, all filtering will be disabled.
+ *
+ * Since: 3.0.0
*/
void pidgin_contact_completion_set_account(PidginContactCompletion *completion, PurpleAccount *account);