diff options
author | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-04-18 03:45:48 +0800 |
---|---|---|
committer | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-04-18 04:24:16 +0800 |
commit | 2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81 (patch) | |
tree | 477a8a79f5477769deeb83568b89b8a4858983d4 /src | |
parent | 34f8f2ae58e6dccd3329acac87a842e9afdda0e3 (diff) | |
download | gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar.gz gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar.bz2 gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar.lz gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar.xz gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.tar.zst gsoc2013-empathy-2bb503aeb013dc7bbefcc51ac3fb0e1b1d3adc81.zip |
Fix indent and translation
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-new-chatroom-dialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c index 1bb034a2b..8b6e6d91e 100644 --- a/src/empathy-new-chatroom-dialog.c +++ b/src/empathy-new-chatroom-dialog.c @@ -279,7 +279,7 @@ new_chatroom_dialog_model_add_columns (EmpathyNewChatroomDialog *dialog) GtkTreeView *view; GtkTreeViewColumn *column; GtkCellRenderer *cell; - gint width, height; + gint width, height; gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &width, &height); @@ -291,13 +291,13 @@ new_chatroom_dialog_model_add_columns (EmpathyNewChatroomDialog *dialog) "height", height, "stock-size", GTK_ICON_SIZE_MENU, NULL); - column = gtk_tree_view_column_new_with_attributes (_(" "), + column = gtk_tree_view_column_new_with_attributes (NULL, cell, "stock-id", COL_INVITE_ONLY, NULL); gtk_tree_view_append_column (view, column); - column = gtk_tree_view_column_new_with_attributes (_(" "), + column = gtk_tree_view_column_new_with_attributes (NULL, cell, "stock-id", COL_NEED_PASSWORD, NULL); |