From: Guillaume Desmottes Date: Mon, 14 Nov 2011 10:59:31 +0000 (+0100) Subject: empathy-logs: port to TP coding style X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=a12ee9fcdd35a1482b07da932b3af71a7f7d495c empathy-logs: port to TP coding style https://bugzilla.gnome.org/show_bug.cgi?id=663873 --- diff --git a/tests/interactive/empathy-logs.c b/tests/interactive/empathy-logs.c index b9f38e0e..4ed67d5d 100644 --- a/tests/interactive/empathy-logs.c +++ b/tests/interactive/empathy-logs.c @@ -1,4 +1,3 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2008 Collabora Ltd. * @@ -26,35 +25,34 @@ #include #include +#include #include #include static void destroy_cb (GtkWidget *dialog, - gpointer user_data) + gpointer user_data) { - gtk_main_quit (); + gtk_main_quit (); } int -main (int argc, char *argv[]) +main (int argc, + char *argv[]) { - GtkWidget *window; + GtkWidget *window; - g_thread_init (NULL); - gtk_init (&argc, &argv); - empathy_gtk_init (); - g_set_application_name (PACKAGE_NAME); - gtk_window_set_default_icon_name ("empathy"); + g_thread_init (NULL); + gtk_init (&argc, &argv); + empathy_gtk_init (); + g_set_application_name (PACKAGE_NAME); + gtk_window_set_default_icon_name ("empathy"); - window = empathy_log_window_show (NULL, NULL, FALSE, NULL); + window = empathy_log_window_show (NULL, NULL, FALSE, NULL); - g_signal_connect (window, "destroy", - G_CALLBACK (destroy_cb), - NULL); + g_signal_connect (window, "destroy", G_CALLBACK (destroy_cb), NULL); - gtk_main (); + gtk_main (); - return EXIT_SUCCESS; + return EXIT_SUCCESS; } -