diff options
author | Milan Crha <mcrha@redhat.com> | 2014-02-14 00:10:49 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-14 00:12:31 +0800 |
commit | 9e28ee3baffa3afc475da07e831ed9c17b44ccc3 (patch) | |
tree | c0d5ad12a340035a986aaf1956662672b3cd0579 | |
parent | 44025ae51253d3bd3db29dba50977599685b65b5 (diff) | |
download | gsoc2013-evolution-9e28ee3baffa3afc475da07e831ed9c17b44ccc3.tar.gz gsoc2013-evolution-9e28ee3baffa3afc475da07e831ed9c17b44ccc3.tar.zst gsoc2013-evolution-9e28ee3baffa3afc475da07e831ed9c17b44ccc3.zip |
Fix EShellSearchbar regression after gtk-stock cleanup
There were missing icons on the shell's searchbar entry, due
to missed property binding on stock-id, instead of icon-name.
-rw-r--r-- | shell/e-shell-searchbar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c index 766c529827..d00ed7c9be 100644 --- a/shell/e-shell-searchbar.c +++ b/shell/e-shell-searchbar.c @@ -729,8 +729,8 @@ shell_searchbar_constructed (GObject *object) widget, "secondary-icon-sensitive", G_BINDING_SYNC_CREATE); g_object_bind_property ( - action, "stock-id", - widget, "secondary-icon-stock", + action, "icon-name", + widget, "secondary-icon-name", G_BINDING_SYNC_CREATE); g_object_bind_property ( action, "tooltip", @@ -744,8 +744,8 @@ shell_searchbar_constructed (GObject *object) widget, "primary-icon-sensitive", G_BINDING_SYNC_CREATE); g_object_bind_property ( - action, "stock-id", - widget, "primary-icon-stock", + action, "icon-name", + widget, "primary-icon-name", G_BINDING_SYNC_CREATE); g_object_bind_property ( action, "tooltip", |