diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 22:59:26 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:07:15 +0800 |
commit | c0dc199af77dc7a5197f99bbfd5b353741273be9 (patch) | |
tree | a25da3a1a915169b4900466505b31685b4e76ce2 /libempathy-gtk | |
parent | 01e22174eb8ca95d992b1128bb0329df1d46805c (diff) | |
download | gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar.gz gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar.bz2 gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar.lz gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar.xz gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.tar.zst gsoc2013-empathy-c0dc199af77dc7a5197f99bbfd5b353741273be9.zip |
empathy-profile-chooser: fix coding style
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-profile-chooser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-profile-chooser.c b/libempathy-gtk/empathy-profile-chooser.c index 10eb3791a..14965741c 100644 --- a/libempathy-gtk/empathy-profile-chooser.c +++ b/libempathy-gtk/empathy-profile-chooser.c @@ -56,7 +56,7 @@ enum { * * Return value: a new reference to the selected #McProfile */ -McProfile* +McProfile * empathy_profile_chooser_dup_selected (GtkWidget *widget) { GtkTreeModel *model; @@ -208,7 +208,7 @@ empathy_profile_chooser_new (void) if (g_list_find_custom (seen, unique_name, (GCompareFunc) strcmp)) { continue; } - seen = g_list_append (seen, (char*) unique_name); + seen = g_list_append (seen, (char *) unique_name); gtk_list_store_insert_with_values (store, &iter, 0, COL_ICON, mc_profile_get_icon_name (profile), |