diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-06-21 18:01:47 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-06-21 18:01:47 +0800 |
commit | b95223f0d32b6c8424341bf0c406e4422c831de6 (patch) | |
tree | ad92e4416a9b52078b59c02f390e0f9e185998f1 /libempathy-gtk/empathy-search-bar.h | |
parent | aafefb7b6c4a17715e181bb2263423d950dca369 (diff) | |
download | gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar.gz gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar.bz2 gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar.lz gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar.xz gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.tar.zst gsoc2013-empathy-b95223f0d32b6c8424341bf0c406e4422c831de6.zip |
EmpathySearchBar: inherit from a GtkBox instead of a GtkBin
Diffstat (limited to 'libempathy-gtk/empathy-search-bar.h')
-rw-r--r-- | libempathy-gtk/empathy-search-bar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-search-bar.h b/libempathy-gtk/empathy-search-bar.h index 2e4e0d76e..4b07f92c2 100644 --- a/libempathy-gtk/empathy-search-bar.h +++ b/libempathy-gtk/empathy-search-bar.h @@ -44,7 +44,7 @@ typedef struct _EmpathySearchBarClass EmpathySearchBarClass; struct _EmpathySearchBar { - GtkBin parent; + GtkBox parent; /*<private>*/ gpointer priv; @@ -52,7 +52,7 @@ struct _EmpathySearchBar struct _EmpathySearchBarClass { - GtkBinClass parent_class; + GtkBoxClass parent_class; }; GType empathy_search_bar_get_type (void) G_GNUC_CONST; |