[empathy] coding style fixes
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] coding style fixes
- Date: Tue, 17 Sep 2013 10:18:41 +0000 (UTC)
commit 46b24776f85bd176aca2b9693499db3ddd6cf0de
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Tue Sep 17 12:18:18 2013 +0200
coding style fixes
libempathy-gtk/empathy-protocol-chooser.c | 2 +-
libempathy-gtk/empathy-roster-view.c | 4 ++--
src/empathy-accounts.c | 2 +-
src/empathy-debugger.c | 2 +-
src/empathy.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libempathy-gtk/empathy-protocol-chooser.c b/libempathy-gtk/empathy-protocol-chooser.c
index 837f890..ff8dac1 100644
--- a/libempathy-gtk/empathy-protocol-chooser.c
+++ b/libempathy-gtk/empathy-protocol-chooser.c
@@ -103,7 +103,7 @@ protocol_chooser_get_protocols_cb (GObject *source,
GList *protocols = NULL;
GList *l;
- if (!tpaw_protocol_get_all_finish(&protocols, result, NULL))
+ if (!tpaw_protocol_get_all_finish (&protocols, result, NULL))
return;
for (l = protocols; l != NULL; l = l->next)
diff --git a/libempathy-gtk/empathy-roster-view.c b/libempathy-gtk/empathy-roster-view.c
index e3d8c7a..ba567e7 100644
--- a/libempathy-gtk/empathy-roster-view.c
+++ b/libempathy-gtk/empathy-roster-view.c
@@ -768,11 +768,11 @@ update_header (GtkListBoxRow *row,
if (before == NULL)
{
/* No separator before the first row */
- gtk_list_box_row_set_header(row, NULL);
+ gtk_list_box_row_set_header (row, NULL);
return;
}
- if (gtk_list_box_row_get_header(row) != NULL)
+ if (gtk_list_box_row_get_header (row) != NULL)
return;
gtk_list_box_row_set_header (row,
diff --git a/src/empathy-accounts.c b/src/empathy-accounts.c
index 8892368..ead848d 100644
--- a/src/empathy-accounts.c
+++ b/src/empathy-accounts.c
@@ -209,7 +209,7 @@ local_cmdline (GApplication *app,
}
else
{
- g_warning("Impossible to register empathy-application: %s", error->message);
+ g_warning ("Impossible to register empathy-application: %s", error->message);
g_clear_error (&error);
*exit_status = EXIT_FAILURE;
}
diff --git a/src/empathy-debugger.c b/src/empathy-debugger.c
index fb4ef1e..1d70ef9 100644
--- a/src/empathy-debugger.c
+++ b/src/empathy-debugger.c
@@ -113,7 +113,7 @@ local_cmdline (GApplication *app,
}
else
{
- g_warning("Impossible to register empathy-debugger: %s", error->message);
+ g_warning ("Impossible to register empathy-debugger: %s", error->message);
g_clear_error (&error);
*exit_status = EXIT_FAILURE;
}
diff --git a/src/empathy.c b/src/empathy.c
index 4a36da6..0d3c694 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -422,7 +422,7 @@ empathy_app_local_command_line (GApplication *app,
if (!g_application_register (app, NULL, &error))
{
- g_warning("Impossible to register empathy: %s", error->message);
+ g_warning ("Impossible to register empathy: %s", error->message);
g_clear_error (&error);
*exit_status = EXIT_FAILURE;
return retval;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]