diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-29 19:32:36 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-29 20:44:27 +0800 |
commit | 724817f46056c2c0479e979059b9365c7cb17fdf (patch) | |
tree | 739ba8467ff1fccd291675e2505a721232c057d6 /src/empathy-new-chatroom-dialog.c | |
parent | c4d480f3ee770e64f22c2b4f945a98f3f8c352d0 (diff) | |
download | gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar.gz gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar.bz2 gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar.lz gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar.xz gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.tar.zst gsoc2013-empathy-724817f46056c2c0479e979059b9365c7cb17fdf.zip |
new-chatroom-dialog: use GtkGrid instead of GtkTable
https://bugzilla.gnome.org/show_bug.cgi?id=660429
Diffstat (limited to 'src/empathy-new-chatroom-dialog.c')
-rw-r--r-- | src/empathy-new-chatroom-dialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c index 29c886540..8176c4803 100644 --- a/src/empathy-new-chatroom-dialog.c +++ b/src/empathy-new-chatroom-dialog.c @@ -57,7 +57,7 @@ typedef struct { GtkWidget *window; GtkWidget *vbox_widgets; - GtkWidget *table_info; + GtkWidget *table_grid; GtkWidget *label_account; GtkWidget *account_chooser; GtkWidget *label_server; @@ -156,7 +156,7 @@ empathy_new_chatroom_dialog_show (GtkWindow *parent) filename = empathy_file_lookup ("empathy-new-chatroom-dialog.ui", "src"); gui = empathy_builder_get_file (filename, "new_chatroom_dialog", &dialog->window, - "table_info", &dialog->table_info, + "table_grid", &dialog->table_grid, "label_account", &dialog->label_account, "label_server", &dialog->label_server, "label_room", &dialog->label_room, @@ -210,9 +210,9 @@ empathy_new_chatroom_dialog_show (GtkWindow *parent) empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (dialog->account_chooser), empathy_account_chooser_filter_supports_chatrooms, NULL); - gtk_table_attach_defaults (GTK_TABLE (dialog->table_info), + gtk_grid_attach (GTK_GRID (dialog->table_grid), dialog->account_chooser, - 1, 2, 0, 1); + 1, 0, 1, 1); gtk_widget_show (dialog->account_chooser); g_signal_connect (EMPATHY_ACCOUNT_CHOOSER (dialog->account_chooser), "ready", |