diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-02-11 17:30:56 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2011-03-08 12:04:57 +0800 |
commit | 3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20 (patch) | |
tree | 1dc721ee82fee7515095b7515d1ea62f57704db9 /libempathy-gtk/empathy-individual-dialogs.c | |
parent | 95bbacd1eda4500ef9cef0f998ebb485861a3a3d (diff) | |
download | gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.gz gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.zst gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.zip |
Style fixes from review
Diffstat (limited to 'libempathy-gtk/empathy-individual-dialogs.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-dialogs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-dialogs.c b/libempathy-gtk/empathy-individual-dialogs.c index f7ca788c1..75e69709a 100644 --- a/libempathy-gtk/empathy-individual-dialogs.c +++ b/libempathy-gtk/empathy-individual-dialogs.c @@ -38,6 +38,8 @@ #include "empathy-contact-widget.h" #include "empathy-ui-utils.h" +#define BULLET_POINT "\342\200\242" + static GtkWidget *new_individual_dialog = NULL; /* @@ -202,7 +204,7 @@ empathy_block_individual_dialog_show (GtkWindow *parent, else if (flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_REPORT_ABUSIVE) can_report_abuse = TRUE; - g_string_append_printf (str, "\n \342\200\242 %s", + g_string_append_printf (str, "\n " BULLET_POINT " %s", tp_contact_get_identifier (contact)); npersonas++; } |