aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 20:55:23 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 21:01:05 +0800
commita4003a623b98bb2d868bc3d10da305f2b5fba435 (patch)
tree0d4fe3e5d445090b9a84edefb6b8a2ff6984b7a8
parent311da6b7a292e02cb14540fe90cbf28b3650067d (diff)
downloadgsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar.gz
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar.bz2
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar.lz
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar.xz
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.tar.zst
gsoc2013-empathy-a4003a623b98bb2d868bc3d10da305f2b5fba435.zip
empathy-tp-chat: fix coding style
-rw-r--r--libempathy/empathy-tp-chat.c12
-rw-r--r--libempathy/empathy-tp-chat.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index 2f951e040..69554bd8a 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
+ *
* Authors: Xavier Claessens <xclaesse@gmail.com>
*/
@@ -108,7 +108,7 @@ tp_chat_async_cb (TpChannel *proxy,
GObject *weak_object)
{
if (error) {
- DEBUG ("Error %s: %s", (gchar*) user_data, error->message);
+ DEBUG ("Error %s: %s", (gchar *) user_data, error->message);
}
}
@@ -275,7 +275,7 @@ tp_chat_received_cb (TpChannel *channel,
if (priv->listing_pending_messages) {
return;
}
-
+
DEBUG ("Message received: %s", message_body);
if (message_flags & TP_CHANNEL_TEXT_MESSAGE_FLAG_NON_TEXT_CONTENT &&
@@ -911,7 +911,7 @@ tp_chat_group_members_changed_cb (TpChannel *self,
/* Request added contacts */
if (added->len > 0) {
empathy_tp_contact_factory_get_from_handles (priv->factory,
- added->len, (TpHandle*) added->data,
+ added->len, (TpHandle *) added->data,
tp_chat_got_added_contacts_cb, NULL, NULL,
G_OBJECT (chat));
}
@@ -995,7 +995,7 @@ tp_chat_constructor (GType type,
members = tp_channel_group_get_members (priv->channel);
handles = tp_intset_to_array (members);
empathy_tp_contact_factory_get_from_handles (priv->factory,
- handles->len, (TpHandle*) handles->data,
+ handles->len, (TpHandle *) handles->data,
tp_chat_got_added_contacts_cb, NULL, NULL, chat);
g_signal_connect (priv->channel, "group-members-changed",
@@ -1360,7 +1360,7 @@ empathy_tp_chat_acknowledge_messages (EmpathyTpChat *chat,
g_return_if_fail (EMPATHY_IS_TP_CHAT (chat));
g_return_if_fail (priv->ready);
- length = g_list_length ((GList *)messages);
+ length = g_list_length ((GList *) messages);
if (length == 0)
return;
diff --git a/libempathy/empathy-tp-chat.h b/libempathy/empathy-tp-chat.h
index fadc5f636..f7d2b58a1 100644
--- a/libempathy/empathy-tp-chat.h
+++ b/libempathy/empathy-tp-chat.h
@@ -56,7 +56,7 @@ GType empathy_tp_chat_get_type (void) G_GNUC_CONST;
EmpathyTpChat *empathy_tp_chat_new (TpChannel *channel);
void empathy_tp_chat_close (EmpathyTpChat *chat);
const gchar * empathy_tp_chat_get_id (EmpathyTpChat *chat);
-EmpathyContact*empathy_tp_chat_get_remote_contact (EmpathyTpChat *chat);
+EmpathyContact *empathy_tp_chat_get_remote_contact (EmpathyTpChat *chat);
TpChannel * empathy_tp_chat_get_channel (EmpathyTpChat *chat);
TpConnection * empathy_tp_chat_get_connection (EmpathyTpChat *chat);
gboolean empathy_tp_chat_is_ready (EmpathyTpChat *chat);