diff options
author | Xan Lopez <xan@igalia.com> | 2013-02-22 17:18:01 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-02-22 17:18:01 +0800 |
commit | e0a97734593860c46630863bf647bcb78766fecf (patch) | |
tree | cf0ea1e9d816b8677f4c7aff48d1ca1f2071e8a8 | |
parent | 5ec0cc55d468e8ef0487049da81570634d828a4c (diff) | |
download | gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar.gz gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar.bz2 gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar.lz gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar.xz gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.tar.zst gsoc2013-epiphany-e0a97734593860c46630863bf647bcb78766fecf.zip |
ephy-web-view: do not use deprecated GtkInfo methods
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | embed/ephy-web-view.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7f32bbd50..736cd8560 100644 --- a/configure.ac +++ b/configure.ac @@ -80,7 +80,7 @@ if test "$enable_maintainer_mode" = "yes"; then fi GLIB_REQUIRED=2.35.6 -GTK_REQUIRED=3.5.4 +GTK_REQUIRED=3.7.10 LIBXML_REQUIRED=2.6.12 LIBXSLT_REQUIRED=1.1.7 WEBKIT_GTK_REQUIRED=1.11.5 diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 2efab0d97..a2b813362 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -2437,7 +2437,7 @@ ephy_web_view_load_error_page (EphyWebView *view, g_free (image_data); if (icon_info) - gtk_icon_info_free (icon_info); + g_object_unref (icon_info); /* Make our history backend ignore the next page load, since it will be an error page. */ ephy_web_view_freeze_history (view); |