diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-30 00:14:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-30 00:14:46 +0800 |
commit | 098ea8aad8d3249d9faca5df5b4fe67b94ba660f (patch) | |
tree | c39d278f71283c9ebded47c606970404276b020f /shell/e-shell-content.c | |
parent | cb78b84aecf1c011e0b013cc94a079e2dc0eabbc (diff) | |
download | gsoc2013-evolution-098ea8aad8d3249d9faca5df5b4fe67b94ba660f.tar.gz gsoc2013-evolution-098ea8aad8d3249d9faca5df5b4fe67b94ba660f.tar.zst gsoc2013-evolution-098ea8aad8d3249d9faca5df5b4fe67b94ba660f.zip |
Get Memos to come up. Doesn't really work yet, but the widgets are all there.
svn path=/branches/kill-bonobo/; revision=36491
Diffstat (limited to 'shell/e-shell-content.c')
-rw-r--r-- | shell/e-shell-content.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/e-shell-content.c b/shell/e-shell-content.c index e1871da412..efa3b663f0 100644 --- a/shell/e-shell-content.c +++ b/shell/e-shell-content.c @@ -509,12 +509,15 @@ shell_content_constructed (GObject *object) EShellWindow *shell_window; EShellContent *shell_content; EIconEntry *icon_entry; + GtkSizeGroup *size_group; GtkAction *action; + GtkWidget *widget; shell_content = E_SHELL_CONTENT (object); shell_view = e_shell_content_get_shell_view (shell_content); shell_window = e_shell_view_get_shell_window (shell_view); icon_entry = E_ICON_ENTRY (shell_content->priv->search_entry); + size_group = e_shell_view_get_size_group (shell_view); action = E_SHELL_WINDOW_ACTION_SEARCH_CLEAR (shell_window); e_icon_entry_add_action_end (icon_entry, action); @@ -526,6 +529,9 @@ shell_content_constructed (GObject *object) action = E_SHELL_WINDOW_ACTION_SEARCH_OPTIONS (shell_window); e_icon_entry_add_action_start (icon_entry, action); + + widget = shell_content->priv->search_bar; + gtk_size_group_add_widget (size_group, widget); } static void |