From bf30024dd7973006bf99d0ae509a7f0022368a41 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 7 Dec 2012 16:30:18 -0500 Subject: Teach EMailExtensionRegistry to find extensions. Now we have the following extension points in the GType hierarchy: E_TYPE_MAIL_FORMATTER_EXTENSION E_TYPE_MAIL_FORMATTER_PRINT_EXTENSION E_TYPE_MAIL_FORMATTER_QUOTE_EXTENSION E_TYPE_MAIL_PARSER_EXTENSION A registry just needs to be given one of these extension points, and it can use g_type_children() to find and load all registered extensions. This eliminates e-mail-format-extensions.[ch] as well as the dynamic loaders I added a few commits back. Dynamically loaded extensions are now easier to register, at the cost of internal extensions being a tad more cumbersome to register. Fair tradeoff, imo. This also makes e_mail_extension_registry_add_extension() a private function used only by e_mail_formatter_extension_registry_load() and e_mail_parser_extension_registry_load(). --- em-format/e-mail-formatter-text-enriched.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'em-format/e-mail-formatter-text-enriched.c') diff --git a/em-format/e-mail-formatter-text-enriched.c b/em-format/e-mail-formatter-text-enriched.c index ce2769d229..be3b1b029b 100644 --- a/em-format/e-mail-formatter-text-enriched.c +++ b/em-format/e-mail-formatter-text-enriched.c @@ -20,8 +20,6 @@ #include #endif -#include "e-mail-format-extensions.h" - #include #include #include @@ -33,6 +31,8 @@ typedef EMailFormatterExtension EMailFormatterTextEnriched; typedef EMailFormatterExtensionClass EMailFormatterTextEnrichedClass; +GType e_mail_formatter_text_enriched_get_type (void); + G_DEFINE_TYPE ( EMailFormatterTextEnriched, e_mail_formatter_text_enriched, -- cgit v1.2.3