diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-17 21:11:02 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-17 21:11:02 +0800 |
commit | 261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203 (patch) | |
tree | f0b01472699241284e3cf09887cad5d4e8c8a8dc /libempathy-gtk/empathy-spell-dialog.c | |
parent | 50d0c4d95f0ba238040961776b2c6600fb94d835 (diff) | |
download | gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar.gz gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar.bz2 gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar.lz gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar.xz gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.tar.zst gsoc2013-empathy-261d7fcb4b47e3e2c8f62d2c5c7a8c297e320203.zip |
Escape text in strings using Pango markup. Fixes bug #528529 (Frederic Peters).
svn path=/trunk/; revision=959
Diffstat (limited to 'libempathy-gtk/empathy-spell-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-spell-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-spell-dialog.c b/libempathy-gtk/empathy-spell-dialog.c index 830cfd0fa..d7701d19c 100644 --- a/libempathy-gtk/empathy-spell-dialog.c +++ b/libempathy-gtk/empathy-spell-dialog.c @@ -261,7 +261,7 @@ empathy_spell_dialog_show (EmpathyChat *chat, g_object_unref (gui); - str = g_strdup_printf ("%s:\n<b>%s</b>", + str = g_markup_printf_escaped ("%s:\n<b>%s</b>", _("Suggestions for the word"), word); |