diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-04-24 08:50:49 +0800 |
---|---|---|
committer | Davyd Madeley <davyd@madeley.id.au> | 2009-04-24 08:50:49 +0800 |
commit | 9470af93eb777cc4054389a09c19bdff7d491946 (patch) | |
tree | ad4a3a15ef706fe5d4d54faa7d33505f438047e3 /libempathy-gtk | |
parent | 6856c3dc3bdac6d7690d450e69ab66e3d9fa7fb4 (diff) | |
download | gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar.gz gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar.bz2 gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar.lz gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar.xz gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.tar.zst gsoc2013-empathy-9470af93eb777cc4054389a09c19bdff7d491946.zip |
Fix trailing whitespace
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 8b69fa815..c8ec59f1b 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -945,7 +945,7 @@ chat_spelling_build_menu (EmpathyChatSpell *chat_spell) { GtkWidget *menu, *menu_item; GList *suggestions, *l; - + menu = gtk_menu_new (); suggestions = empathy_spell_get_suggestions (chat_spell->word); if (suggestions == NULL) { @@ -963,9 +963,9 @@ chat_spelling_build_menu (EmpathyChatSpell *chat_spell) } } empathy_spell_free_suggestions (suggestions); - + gtk_widget_show_all (menu); - + return menu; } @@ -1059,10 +1059,10 @@ chat_input_populate_popup_cb (GtkTextView *view, image = gtk_image_new_from_icon_name (GTK_STOCK_SPELL_CHECK, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); - + spell_menu = chat_spelling_build_menu (chat_spell); gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), spell_menu); - + gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item); gtk_widget_show (item); } |