aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-formatter-quote-text-html.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-12-07 23:11:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-12-08 03:01:05 +0800
commit7885426c2bfc410838e9c49bfd350b04e0535435 (patch)
treede1e21b46f4cd0edda4ccf0341ec64e8117297a3 /em-format/e-mail-formatter-quote-text-html.c
parent00b211b0f515d6b6d9147c1ca568d0c4b42af699 (diff)
downloadgsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar.gz
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar.bz2
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar.lz
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar.xz
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.tar.zst
gsoc2013-evolution-7885426c2bfc410838e9c49bfd350b04e0535435.zip
EMailFormatterExtension: Convert get_display_name() to a string field.
Of the formatter extensions that provide a display name, they all use a static string. So we don't need an instance of the extension to obtain its display name. Just make it a string field in the class structure.
Diffstat (limited to 'em-format/e-mail-formatter-quote-text-html.c')
-rw-r--r--em-format/e-mail-formatter-quote-text-html.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/em-format/e-mail-formatter-quote-text-html.c b/em-format/e-mail-formatter-quote-text-html.c
index 84425ac8d3..0031507360 100644
--- a/em-format/e-mail-formatter-quote-text-html.c
+++ b/em-format/e-mail-formatter-quote-text-html.c
@@ -85,12 +85,6 @@ emqfe_text_html_format (EMailFormatterExtension *extension,
}
static const gchar *
-emqfe_text_html_get_display_name (EMailFormatterExtension *extension)
-{
- return _("HTML");
-}
-
-static const gchar *
emqfe_text_html_get_description (EMailFormatterExtension *extension)
{
return _("Format part as HTML");
@@ -99,9 +93,9 @@ emqfe_text_html_get_description (EMailFormatterExtension *extension)
static void
e_mail_formatter_quote_text_html_class_init (EMailFormatterExtensionClass *class)
{
+ class->display_name = _("HTML");
class->mime_types = formatter_mime_types;
class->format = emqfe_text_html_format;
- class->get_display_name = emqfe_text_html_get_display_name;
class->get_description = emqfe_text_html_get_description;
}