diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-02-17 05:24:29 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-02-17 05:24:29 +0800 |
commit | c0781955b2260f4e280e8f52032979367f09fcd5 (patch) | |
tree | 6bb6ceada5e530165186f1d18ca1ce7874977cf5 | |
parent | 9bc07103a88dc052683f101c23d4e40c95305ed7 (diff) | |
download | gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar.gz gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar.bz2 gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar.lz gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar.xz gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.tar.zst gsoc2013-empathy-c0781955b2260f4e280e8f52032979367f09fcd5.zip |
Correct bracket-style.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2476
-rw-r--r-- | libempathy/empathy-dispatcher.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index 231a2c106..13ef06afd 100644 --- a/libempathy/empathy-dispatcher.h +++ b/libempathy/empathy-dispatcher.h @@ -42,12 +42,14 @@ G_BEGIN_DECLS typedef struct _EmpathyDispatcher EmpathyDispatcher; typedef struct _EmpathyDispatcherClass EmpathyDispatcherClass; -struct _EmpathyDispatcher { +struct _EmpathyDispatcher +{ GObject parent; gpointer priv; }; -struct _EmpathyDispatcherClass { +struct _EmpathyDispatcherClass +{ GObjectClass parent_class; }; |