libpurple/purplemessage.c

changeset 42614
b75a5bbf6c35
parent 42594
eddde70cedd8
child 42656
df9aafbae930
--- a/libpurple/purplemessage.c	Thu Feb 29 21:35:42 2024 -0600
+++ b/libpurple/purplemessage.c	Thu Feb 29 21:36:49 2024 -0600
@@ -239,7 +239,7 @@
 	 *
 	 * The protocol-specific identifier of the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_ID] = g_param_spec_string(
 		"id", "ID",
@@ -252,7 +252,7 @@
 	 *
 	 * The author of the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_AUTHOR] = g_param_spec_string(
 		"author", "Author",
@@ -265,7 +265,7 @@
 	 *
 	 * The hex color for the author's name.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_AUTHOR_NAME_COLOR] = g_param_spec_string(
 		"author-name-color", "author-name-color",
@@ -278,7 +278,7 @@
 	 *
 	 * The alias of the author.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_AUTHOR_ALIAS] = g_param_spec_string(
 		"author-alias", "Author's alias",
@@ -291,7 +291,7 @@
 	 *
 	 * The recipient of the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_RECIPIENT] = g_param_spec_string(
 		"recipient", "Recipient",
@@ -304,7 +304,7 @@
 	 *
 	 * The contents of the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_CONTENTS] = g_param_spec_string(
 		"contents", "Contents",
@@ -322,7 +322,7 @@
 	 * interface hint that this message is different than a normal text
 	 * message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_ACTION] = g_param_spec_boolean(
 		"action", "action",
@@ -335,7 +335,7 @@
 	 *
 	 * The timestamp of the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_TIMESTAMP] = g_param_spec_boxed(
 		"timestamp", "timestamp",
@@ -348,7 +348,7 @@
 	 *
 	 * The #PurpleMessageFlags for the message.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_FLAGS] = g_param_spec_flags(
 		"flags", "Flags",
@@ -362,7 +362,7 @@
 	 * An error that this message encountered. This could be something like a
 	 * failed delivery, or failed redaction, or rate limited, etc.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_ERROR] = g_param_spec_boxed(
 		"error", "error",
@@ -377,7 +377,7 @@
 	 * possibly client dependent as well. So if this is %FALSE that doesn't
 	 * necessarily mean the message was not delivered.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_DELIVERED] = g_param_spec_boolean(
 		"delivered", "delivered",
@@ -392,7 +392,7 @@
 	 * possibly client dependent as well. So if this is %NULL that doesn't
 	 * necessarily mean the message was not delivered.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_DELIVERED_AT] = g_param_spec_boxed(
 		"delivered-at", "delivered-at",
@@ -407,7 +407,7 @@
 	 *
 	 * This should typically only be set by a protocol plugin.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_EDITED] = g_param_spec_boolean(
 		"edited", "edited",
@@ -422,7 +422,7 @@
 	 * and possibly client dependent as well. So if this is %NULL that doesn't
 	 * necessarily mean the message was not edited.
 	 *
-	 * Since: 3.0.0
+	 * Since: 3.0
 	 */
 	properties[PROP_EDITED_AT] = g_param_spec_boxed(
 		"edited-at", "edited-at",

mercurial