aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-02-11 17:30:56 +0800
committerChandni Verma <chandniverma2112@gmail.com>2011-03-08 12:04:57 +0800
commit3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20 (patch)
tree1dc721ee82fee7515095b7515d1ea62f57704db9
parent95bbacd1eda4500ef9cef0f998ebb485861a3a3d (diff)
downloadgsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.gz
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.bz2
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.lz
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.xz
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.tar.zst
gsoc2013-empathy-3ff78cbfcfe5dd8cbda7263764d3a8d93995bc20.zip
Style fixes from review
-rw-r--r--libempathy-gtk/empathy-individual-dialogs.c4
-rw-r--r--libempathy-gtk/empathy-individual-dialogs.h3
2 files changed, 5 insertions, 2 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++;
}
diff --git a/libempathy-gtk/empathy-individual-dialogs.h b/libempathy-gtk/empathy-individual-dialogs.h
index f6c402014..1444d5ac8 100644
--- a/libempathy-gtk/empathy-individual-dialogs.h
+++ b/libempathy-gtk/empathy-individual-dialogs.h
@@ -33,7 +33,8 @@ void empathy_new_individual_dialog_show (GtkWindow *parent);
void empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
FolksIndividual *individual);
gboolean empathy_block_individual_dialog_show (GtkWindow *parent,
- FolksIndividual *individual, gboolean *abusive);
+ FolksIndividual *individual,
+ gboolean *abusive);
G_END_DECLS