aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-06-21 17:19:00 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-06-21 17:19:00 +0800
commit9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50 (patch)
tree1081aeeabc28a1f3326058afa5f406a4fd9af216 /libempathy-gtk/empathy-chat.h
parent946db1000fbbf2c04174bbbd2d84a1288ec4fe2d (diff)
downloadgsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar.gz
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar.bz2
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar.lz
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar.xz
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.tar.zst
gsoc2013-empathy-9f03fdbe713fb5664626e19fa1b58e7eb4ca7e50.zip
EmpathyChat: inherit from a GtkBox instead of a GtkBin
This allows us to get rid of the size_allocate method.
Diffstat (limited to 'libempathy-gtk/empathy-chat.h')
-rw-r--r--libempathy-gtk/empathy-chat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat.h b/libempathy-gtk/empathy-chat.h
index 4b0540b20..0031410d6 100644
--- a/libempathy-gtk/empathy-chat.h
+++ b/libempathy-gtk/empathy-chat.h
@@ -50,7 +50,7 @@ typedef struct _EmpathyChatClass EmpathyChatClass;
typedef struct _EmpathyChatPriv EmpathyChatPriv;
struct _EmpathyChat {
- GtkBin parent;
+ GtkBox parent;
EmpathyChatPriv *priv;
/* Protected */
@@ -59,7 +59,7 @@ struct _EmpathyChat {
};
struct _EmpathyChatClass {
- GtkBinClass parent;
+ GtkBoxClass parent;
};
GType empathy_chat_get_type (void);