diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-04-11 00:55:06 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-04-11 00:55:06 +0800 |
commit | cf0bc93bf9078a3629b892e207e6ab4537d7a163 (patch) | |
tree | c1b0c5146381375412d49cd95957ae1c67b3142c /tests | |
parent | 4233989e20be2285b6f2c04f670b0d0a3a4a901a (diff) | |
download | gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar.gz gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar.bz2 gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar.lz gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar.xz gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.tar.zst gsoc2013-empathy-cf0bc93bf9078a3629b892e207e6ab4537d7a163.zip |
Coding style fix for test
From: Davyd Madeley <davyd@madeley.id.au>
svn path=/trunk/; revision=2801
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-empathy-presence-chooser.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test-empathy-presence-chooser.c b/tests/test-empathy-presence-chooser.c index 9ca479909..02991e859 100644 --- a/tests/test-empathy-presence-chooser.c +++ b/tests/test-empathy-presence-chooser.c @@ -30,11 +30,14 @@ int main (int argc, char **argv) { + GtkWidget *window; + GtkWidget *chooser; + gtk_init (&argc, &argv); empathy_gtk_init (); - GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL); - GtkWidget *chooser = empathy_presence_chooser_new (); + window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + chooser = empathy_presence_chooser_new (); gtk_container_add (GTK_CONTAINER (window), chooser); gtk_window_set_default_size (GTK_WINDOW (window), 150, -1); |