aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Tellier <jonathan.tellier@gmail.com>2009-06-12 23:20:04 +0800
committerjtellier <jonathan.tellier@collabora.co.uk>2009-06-12 23:20:04 +0800
commitf3e7e7d24461f07b2d4752c154d5c0a68dabf23e (patch)
tree506de70e65f02aa93de2dd14153a0f682bbea964
parentefd01a1ef0a6be5552cc370e0870c9106fdc2908 (diff)
downloadgsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar.gz
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar.bz2
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar.lz
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar.xz
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.tar.zst
gsoc2013-empathy-f3e7e7d24461f07b2d4752c154d5c0a68dabf23e.zip
Fixed code style
-rw-r--r--libempathy-gtk/empathy-smiley-manager.c2
-rw-r--r--libempathy-gtk/empathy-theme-adium.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-smiley-manager.c b/libempathy-gtk/empathy-smiley-manager.c
index c504d4cdb..e8f623424 100644
--- a/libempathy-gtk/empathy-smiley-manager.c
+++ b/libempathy-gtk/empathy-smiley-manager.c
@@ -122,7 +122,7 @@ smiley_manager_finalize (GObject *object)
EmpathySmiley *smiley = l->data;
/* The smiley got the ownership of the path */
- g_free ((gchar*) smiley->path);
+ g_free ((gchar *) smiley->path);
empathy_smiley_free (smiley);
}
g_slist_free (priv->smileys);
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c
index 1f0c043aa..82384acd1 100644
--- a/libempathy-gtk/empathy-theme-adium.c
+++ b/libempathy-gtk/empathy-theme-adium.c
@@ -475,7 +475,7 @@ theme_adium_append_message (EmpathyChatView *view,
name = empathy_contact_get_name (sender);
/* If this is a /me, append an event */
- if (empathy_message_get_tptype(msg) == TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION) {
+ if (empathy_message_get_tptype (msg) == TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION) {
gchar *str;
str = g_strdup_printf ("%s %s", name, body);
@@ -560,7 +560,7 @@ static void
theme_adium_scroll (EmpathyChatView *view,
gboolean allow_scrolling)
{
- /* FIXME: Is it possible? I guess we need a js function, but I don't
+ /* FIXME: Is it possible? I guess we need a js function, but I don't
* see any... */
}