From bfd175e985d482544ccf13cda4535f7fca317775 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 18 Jun 2022 09:26:52 +0100 Subject: [PATCH] notification - remove unused func --- src/bin/e_notification.c | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/bin/e_notification.c b/src/bin/e_notification.c index 8ddac7c0f..2153efa3a 100644 --- a/src/bin/e_notification.c +++ b/src/bin/e_notification.c @@ -200,29 +200,6 @@ hints_dict_iter(void *data, const void *key, Eldbus_Message_Iter *var) } } -/* this function should be external in edje for use in cases such as this module. - * - * happily, it was decided that the function would not be external so that it could - * be duplicated into the module in full. - */ - -static int -_text_escape(Eina_Strbuf *txt, const char *text) -{ - const char *escaped; - int advance; - - escaped = evas_textblock_string_escape_get(text, &advance); - if (!escaped) - { - eina_strbuf_append_char(txt, text[0]); - advance = 1; - } - else - eina_strbuf_append(txt, escaped); - return advance; -} - static int _tag_len(const char *txt) {