diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-09-15 20:09:37 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-09-15 20:09:37 +0800 |
commit | c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2 (patch) | |
tree | ed93076d1c4da4b2b97c309139d5b6a0f76cf94a | |
parent | 192ac20a72567c25c653893c12bb2be0c21a2436 (diff) | |
download | gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar.gz gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar.bz2 gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar.lz gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar.xz gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.tar.zst gsoc2013-evolution-c802b643ead042a536e0e3ccd4ecf2fbbd07b9a2.zip |
Update API documentation.
-rw-r--r-- | doc/reference/evolution-mail-formatter/evolution-mail-formatter-sections.txt | 1 | ||||
-rw-r--r-- | doc/reference/evolution-util/evolution-util-sections.txt | 1 | ||||
-rw-r--r-- | e-util/e-web-view.c | 4 | ||||
-rw-r--r-- | e-util/e-web-view.h | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/doc/reference/evolution-mail-formatter/evolution-mail-formatter-sections.txt b/doc/reference/evolution-mail-formatter/evolution-mail-formatter-sections.txt index 98285ab878..9429d79d29 100644 --- a/doc/reference/evolution-mail-formatter/evolution-mail-formatter-sections.txt +++ b/doc/reference/evolution-mail-formatter/evolution-mail-formatter-sections.txt @@ -52,6 +52,7 @@ e_mail_formatter_format e_mail_formatter_format_finish e_mail_formatter_format_as e_mail_formatter_format_text +e_mail_formatter_get_sub_html_header e_mail_formatter_get_html_header e_mail_formatter_get_extension_registry e_mail_formatter_get_text_format_flags diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt index c81262eb72..c7cd9fcbdc 100644 --- a/doc/reference/evolution-util/evolution-util-sections.txt +++ b/doc/reference/evolution-util/evolution-util-sections.txt @@ -4417,6 +4417,7 @@ e_web_view_cursor_image_save e_web_view_request e_web_view_request_finish e_web_view_install_request_handler +e_web_view_add_css_rule_into_style_sheet <SUBSECTION Standard> E_WEB_VIEW E_IS_WEB_VIEW diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c index 668b3952de..b4eb5e4d40 100644 --- a/e-util/e-web-view.c +++ b/e-util/e-web-view.c @@ -3439,8 +3439,8 @@ add_css_rule_into_style_sheet_recursive (WebKitDOMDocument *document, * Insert new CSS rule (defined with @selector and @style) into CSS style sheet * with given @style_sheet_id. If style sheet doesn't exist, it's created. * - * The rule is inserted to every DOM document that is in page. That means also into - * DOM documents inside iframe elements. + * The rule is inserted to every DOM document that is in page. That means also + * into DOM documents inside iframe elements. **/ void e_web_view_add_css_rule_into_style_sheet (EWebView *view, diff --git a/e-util/e-web-view.h b/e-util/e-web-view.h index 51826a7326..e01a635055 100644 --- a/e-util/e-web-view.h +++ b/e-util/e-web-view.h @@ -199,7 +199,7 @@ void e_web_view_install_request_handler (EWebView *web_view, GType handler_type); void e_web_view_add_css_rule_into_style_sheet - (EWebView *view, + (EWebView *web_view, const gchar *style_sheet_id, const gchar *selector, const gchar *style); |