diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-23 02:48:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-27 14:16:53 +0800 |
commit | f8864692d1e85ea1ed4dbfc7342f27d2f6d52243 (patch) | |
tree | dc48d78852b37853df9dae3e1dbda9b23457ee1e | |
parent | 785c41cb16530e199fa6f0d43eb74e41cac1cf09 (diff) | |
download | gsoc2013-evolution-f8864692d1e85ea1ed4dbfc7342f27d2f6d52243.tar.gz gsoc2013-evolution-f8864692d1e85ea1ed4dbfc7342f27d2f6d52243.tar.zst gsoc2013-evolution-f8864692d1e85ea1ed4dbfc7342f27d2f6d52243.zip |
Remove unused e_web_view_set_enable_frame_flattening().
-rw-r--r-- | doc/reference/evolution-util/evolution-util-sections.txt | 1 | ||||
-rw-r--r-- | e-util/e-web-view.c | 16 | ||||
-rw-r--r-- | e-util/e-web-view.h | 3 |
3 files changed, 0 insertions, 20 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt index dce251e489..4816728208 100644 --- a/doc/reference/evolution-util/evolution-util-sections.txt +++ b/doc/reference/evolution-util/evolution-util-sections.txt @@ -4365,7 +4365,6 @@ e_web_view_get_disable_printing e_web_view_set_disable_printing e_web_view_get_disable_save_to_disk e_web_view_set_disable_save_to_disk -e_web_view_set_enable_frame_flattening e_web_view_get_editable e_web_view_set_editable e_web_view_get_inline_spelling diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c index 975b5ad96b..6fd81ba177 100644 --- a/e-util/e-web-view.c +++ b/e-util/e-web-view.c @@ -1917,22 +1917,6 @@ e_web_view_set_disable_save_to_disk (EWebView *web_view, g_object_notify (G_OBJECT (web_view), "disable-save-to-disk"); } -void -e_web_view_set_enable_frame_flattening (EWebView *web_view, - gboolean enable_frame_flattening) -{ - WebKitWebSettings *settings; - - g_return_if_fail (E_IS_WEB_VIEW (web_view)); - - settings = webkit_web_view_get_settings (WEBKIT_WEB_VIEW (web_view)); - g_return_if_fail (settings != NULL); - - g_object_set ( - G_OBJECT (settings), "enable-frame-flattening", - enable_frame_flattening, NULL); -} - gboolean e_web_view_get_editable (EWebView *web_view) { diff --git a/e-util/e-web-view.h b/e-util/e-web-view.h index 8e4d26b86b..4f782b9e53 100644 --- a/e-util/e-web-view.h +++ b/e-util/e-web-view.h @@ -117,9 +117,6 @@ gboolean e_web_view_get_disable_save_to_disk void e_web_view_set_disable_save_to_disk (EWebView *web_view, gboolean disable_save_to_disk); -void e_web_view_set_enable_frame_flattening - (EWebView *web_view, - gboolean enable_frame_flattening); gboolean e_web_view_get_editable (EWebView *web_view); void e_web_view_set_editable (EWebView *web_view, gboolean editable); |