aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libempathy-gtk/empathy-account-widget-irc.h3
-rw-r--r--libempathy-gtk/empathy-irc-network-dialog.h4
-rw-r--r--libempathy/empathy-irc-network-manager.c14
-rw-r--r--libempathy/empathy-irc-network-manager.h15
-rw-r--r--libempathy/empathy-irc-server.h4
5 files changed, 18 insertions, 22 deletions
diff --git a/libempathy-gtk/empathy-account-widget-irc.h b/libempathy-gtk/empathy-account-widget-irc.h
index 2d24d51dd..6ead048eb 100644
--- a/libempathy-gtk/empathy-account-widget-irc.h
+++ b/libempathy-gtk/empathy-account-widget-irc.h
@@ -26,8 +26,7 @@
G_BEGIN_DECLS
-GtkWidget *
-empathy_account_widget_irc_new (McAccount *account);
+GtkWidget * empathy_account_widget_irc_new (McAccount *account);
G_END_DECLS
diff --git a/libempathy-gtk/empathy-irc-network-dialog.h b/libempathy-gtk/empathy-irc-network-dialog.h
index 4f2fd65db..985849696 100644
--- a/libempathy-gtk/empathy-irc-network-dialog.h
+++ b/libempathy-gtk/empathy-irc-network-dialog.h
@@ -27,8 +27,8 @@
G_BEGIN_DECLS
-GtkWidget *
-empathy_irc_network_dialog_show (EmpathyIrcNetwork *network, GtkWidget *parent);
+GtkWidget * empathy_irc_network_dialog_show (EmpathyIrcNetwork *network,
+ GtkWidget *parent);
G_END_DECLS
diff --git a/libempathy/empathy-irc-network-manager.c b/libempathy/empathy-irc-network-manager.c
index a1786c5d8..2f0b4ba48 100644
--- a/libempathy/empathy-irc-network-manager.c
+++ b/libempathy/empathy-irc-network-manager.c
@@ -66,13 +66,13 @@ struct _EmpathyIrcNetworkManagerPrivate {
#define EMPATHY_IRC_NETWORK_MANAGER_GET_PRIVATE(obj)\
((EmpathyIrcNetworkManagerPrivate *) obj->priv)
-static void
-irc_network_manager_load_servers (EmpathyIrcNetworkManager *manager);
-static gboolean
-irc_network_manager_file_parse (EmpathyIrcNetworkManager *manager,
- const gchar *filename, gboolean user_defined);
-static gboolean
-irc_network_manager_file_save (EmpathyIrcNetworkManager *manager);
+static void irc_network_manager_load_servers (
+ EmpathyIrcNetworkManager *manager);
+static gboolean irc_network_manager_file_parse (
+ EmpathyIrcNetworkManager *manager, const gchar *filename,
+ gboolean user_defined);
+static gboolean irc_network_manager_file_save (
+ EmpathyIrcNetworkManager *manager);
static void
empathy_irc_network_manager_get_property (GObject *object,
diff --git a/libempathy/empathy-irc-network-manager.h b/libempathy/empathy-irc-network-manager.h
index 8dbc69b9e..7eae9a7fb 100644
--- a/libempathy/empathy-irc-network-manager.h
+++ b/libempathy/empathy-irc-network-manager.h
@@ -62,20 +62,17 @@ empathy_irc_network_manager_get_type (void);
(G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_IRC_NETWORK_MANAGER, \
EmpathyIrcNetworkManagerClass))
-EmpathyIrcNetworkManager *
-empathy_irc_network_manager_new (const gchar *global_file,
- const gchar *user_file);
+EmpathyIrcNetworkManager * empathy_irc_network_manager_new (
+ const gchar *global_file, const gchar *user_file);
-void
-empathy_irc_network_manager_add (EmpathyIrcNetworkManager *manager,
+void empathy_irc_network_manager_add (EmpathyIrcNetworkManager *manager,
EmpathyIrcNetwork *irc_network);
-void
-empathy_irc_network_manager_remove (EmpathyIrcNetworkManager *manager,
+void empathy_irc_network_manager_remove (EmpathyIrcNetworkManager *manager,
EmpathyIrcNetwork *network);
-GSList *
-empathy_irc_network_manager_get_networks (EmpathyIrcNetworkManager *manager);
+GSList * empathy_irc_network_manager_get_networks (
+ EmpathyIrcNetworkManager *manager);
EmpathyIrcNetwork * empathy_irc_network_manager_find_network_by_address (
EmpathyIrcNetworkManager *manager, const gchar *address);
diff --git a/libempathy/empathy-irc-server.h b/libempathy/empathy-irc-server.h
index 17cb39e0d..09f8c1ef7 100644
--- a/libempathy/empathy-irc-server.h
+++ b/libempathy/empathy-irc-server.h
@@ -57,8 +57,8 @@ GType empathy_irc_server_get_type (void);
(G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_IRC_SERVER,\
EmpathyIrcServerClass))
-EmpathyIrcServer *
-empathy_irc_server_new (const gchar *address, guint port, gboolean ssl);
+EmpathyIrcServer * empathy_irc_server_new (const gchar *address, guint port,
+ gboolean ssl);
G_END_DECLS