summaryrefslogtreecommitdiff
path: root/libpurple/purplemarkup.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-09-21 03:21:41 -0500
committerGary Kramlich <grim@reaperworld.com>2022-09-21 03:21:41 -0500
commit64010771d0a842568ab4e80bd9611658ebe16ecb (patch)
tree5ad308d73317fea506df756a52538c2ab3afa108 /libpurple/purplemarkup.h
parent677e1ee9d5e3bf2e85dc902b0d1270b62781a27e (diff)
downloadpidgin-64010771d0a842568ab4e80bd9611658ebe16ecb.tar.gz
Remove purple_markup_get_css_property and purple_markup_is_rtl which are no longer used
Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/1823/
Diffstat (limited to 'libpurple/purplemarkup.h')
-rw-r--r--libpurple/purplemarkup.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/libpurple/purplemarkup.h b/libpurple/purplemarkup.h
index 44eca7623f..50d731c614 100644
--- a/libpurple/purplemarkup.h
+++ b/libpurple/purplemarkup.h
@@ -191,35 +191,6 @@ char *purple_markup_get_tag_name(const char *tag);
*/
const char * purple_markup_unescape_entity(const char *text, int *length);
-/**
- * purple_markup_get_css_property:
- * @style: A string containing the inline CSS text.
- * @opt: The requested CSS property.
- *
- * Returns a newly allocated string containing the value of the CSS property specified
- * in opt. The @style argument is expected to point to a HTML inline CSS.
- * The function will seek for the CSS property and return its value.
- *
- * For example, purple_markup_get_css_property("direction:rtl;color:#dc4d1b;",
- * "color") would return "#dc4d1b".
- *
- * On error or if the requested property was not found, the function returns
- * %NULL.
- *
- * Returns: The value of the requested CSS property.
- */
-char * purple_markup_get_css_property(const gchar *style, const gchar *opt);
-
-/**
- * purple_markup_is_rtl:
- * @html: The HTML text.
- *
- * Check if the given HTML contains RTL text.
- *
- * Returns: TRUE if the text contains RTL text, FALSE otherwise.
- */
-gboolean purple_markup_is_rtl(const char *html);
-
G_END_DECLS
#endif /* PURPLE_MARKUP_H */