diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-11-08 23:23:20 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-11-08 23:23:20 +0800 |
commit | 61276718fc0643e8951219748b3dd4ee0b282d23 (patch) | |
tree | 44bcd413cd03dea6c8db1e9f0f81cae0c2609e8e /libempathy-gtk | |
parent | 859b7a4bd567c16b210870a41bacf8356cbd0ebc (diff) | |
download | gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar.gz gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar.bz2 gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar.lz gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar.xz gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.tar.zst gsoc2013-empathy-61276718fc0643e8951219748b3dd4ee0b282d23.zip |
coding style fixesEMPATHY_2_91_2
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 4 | ||||
-rw-r--r-- | libempathy-gtk/empathy-presence-chooser.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index e946ae57f..1c7163731 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -1896,7 +1896,7 @@ chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell) g_assert (codes != NULL); if (g_list_length (codes) > 1) { /* translators: %s is the selected word */ - label = g_strdup_printf(_("Add '%s' to Dictionary"), + label = g_strdup_printf (_("Add '%s' to Dictionary"), chat_spell->word); item = gtk_image_menu_item_new_with_mnemonic (label); g_free (label); @@ -1933,7 +1933,7 @@ chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell) g_assert (name != NULL); /* translators: first %s is the selected word, * second %s is the language name of the target dictionary */ - label = g_strdup_printf(_("Add '%s' to %s Dictionary"), + label = g_strdup_printf (_("Add '%s' to %s Dictionary"), chat_spell->word, name); item = gtk_image_menu_item_new_with_mnemonic (label); g_free (label); diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c index 1dbc38aec..33bf02811 100644 --- a/libempathy-gtk/empathy-presence-chooser.c +++ b/libempathy-gtk/empathy-presence-chooser.c @@ -992,7 +992,7 @@ presence_chooser_finalize (GObject *object) GtkWidget * empathy_presence_chooser_new (void) { - /* FIXME, why can't this go in init()? */ + /* FIXME, why can't this go in init ()? */ return g_object_new (EMPATHY_TYPE_PRESENCE_CHOOSER, "has-entry", TRUE, NULL); |