From 1e663aa13266cad55e5019c03e768a38955166eb Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 13 Oct 2010 23:40:16 -0400 Subject: Replace EBinding with GBinding. GObject now does property bindings itself. Requires GLib >= 2.26. --- shell/e-shell-utils.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'shell/e-shell-utils.c') diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c index ee1af8e3be..9d2d4ca584 100644 --- a/shell/e-shell-utils.c +++ b/shell/e-shell-utils.c @@ -29,7 +29,6 @@ #include -#include "e-util/e-binding.h" #include "widgets/misc/e-import-assistant.h" /** @@ -52,9 +51,10 @@ e_shell_configure_ui_manager (EShell *shell, shell_settings = e_shell_get_shell_settings (shell); - e_binding_new ( + g_object_bind_property ( shell, "express-mode", - ui_manager, "express-mode"); + ui_manager, "express-mode", + G_BINDING_SYNC_CREATE); } /** @@ -77,13 +77,15 @@ e_shell_configure_web_view (EShell *shell, shell_settings = e_shell_get_shell_settings (shell); #ifndef G_OS_WIN32 - e_binding_new ( + g_object_bind_property ( shell_settings, "disable-printing", - web_view, "disable-printing"); + web_view, "disable-printing", + G_BINDING_SYNC_CREATE); - e_binding_new ( + g_object_bind_property ( shell_settings, "disable-save-to-disk", - web_view, "disable-save-to-disk"); + web_view, "disable-save-to-disk", + G_BINDING_SYNC_CREATE); #endif } -- cgit v1.2.3