summaryrefslogtreecommitdiff
path: root/libpurple/purpleconversationuiops.c
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-04-12 20:27:47 -0500
committerGary Kramlich <grim@reaperworld.com>2021-04-12 20:27:47 -0500
commit31be44163142f1ed4e1ecfc1be697184b2c29a89 (patch)
tree0c22e93d467e8c0dcbf4d1d8066c26c220aa7e88 /libpurple/purpleconversationuiops.c
parent91707d71708530db33750cb33a88f9bb383a30c8 (diff)
downloadpidgin-31be44163142f1ed4e1ecfc1be697184b2c29a89.tar.gz
rename conversation.[ch] to purpleconversation.[ch] and split PurpleConversationUiOps out to its own file to avoid circular include issues.
Testing Done: Compiled and ran locally including docs and pot file. The pot file fails as I need to rebase on [596](https://reviews.imfreedom.org/r/596/) Reviewed at https://reviews.imfreedom.org/r/597/
Diffstat (limited to 'libpurple/purpleconversationuiops.c')
-rw-r--r--libpurple/purpleconversationuiops.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/libpurple/purpleconversationuiops.c b/libpurple/purpleconversationuiops.c
new file mode 100644
index 0000000000..22652a4ba4
--- /dev/null
+++ b/libpurple/purpleconversationuiops.c
@@ -0,0 +1,58 @@
+/*
+ * purple
+ *
+ * Purple is the legal property of its developers, whose names are too numerous
+ * to list here. Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
+ */
+
+#include <glib/gi18n-lib.h>
+
+#include <purpleconversationuiops.h>
+
+/******************************************************************************
+ * Helpers
+ *****************************************************************************/
+static PurpleConversationUiOps *
+purple_conversation_ui_ops_copy(PurpleConversationUiOps *ops)
+{
+ PurpleConversationUiOps *ops_new;
+
+ g_return_val_if_fail(ops != NULL, NULL);
+
+ ops_new = g_new(PurpleConversationUiOps, 1);
+ *ops_new = *ops;
+
+ return ops_new;
+}
+
+/******************************************************************************
+ * Public API
+ *****************************************************************************/
+GType
+purple_conversation_ui_ops_get_type(void)
+{
+ static GType type = 0;
+
+ if (type == 0) {
+ type = g_boxed_type_register_static("PurpleConversationUiOps",
+ (GBoxedCopyFunc)purple_conversation_ui_ops_copy,
+ (GBoxedFreeFunc)g_free);
+ }
+
+ return type;
+}