diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-26 13:26:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-26 13:26:18 +0800 |
commit | bd31f49bac99f21656dc7d0352d5b3f7385f71b2 (patch) | |
tree | b693ad7ec135bd8031458611b5ec485abd866463 /shell/e-shell-content.c | |
parent | 5f83c587b2da0b9578117796253b7726e98748cc (diff) | |
download | gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.gz gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.zst gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'shell/e-shell-content.c')
-rw-r--r-- | shell/e-shell-content.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-content.c b/shell/e-shell-content.c index 799df0d4fe..af318b8582 100644 --- a/shell/e-shell-content.c +++ b/shell/e-shell-content.c @@ -260,7 +260,8 @@ shell_content_forall (GtkContainer *container, priv = E_SHELL_CONTENT_GET_PRIVATE (container); - if (include_internals && priv->searchbar != NULL && container == (GtkContainer *)priv->searchbar->parent) + if (include_internals && priv->searchbar != NULL && + container == GTK_CONTAINER (priv->searchbar->parent)) callback (priv->searchbar, callback_data); /* Chain up to parent's forall() method. */ |