aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-printer.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-06-24 19:43:06 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-06-25 08:31:43 +0800
commitcc8bf823ec514f6ba1f59fa8d8103936fa48d070 (patch)
tree28123abc136d37a3574e1060d76188e031b5dd12 /mail/e-mail-printer.c
parent728c641c164f23acf43b306d37484888d2318958 (diff)
downloadgsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar.gz
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar.bz2
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar.lz
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar.xz
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.tar.zst
gsoc2013-evolution-cc8bf823ec514f6ba1f59fa8d8103936fa48d070.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'mail/e-mail-printer.c')
-rw-r--r--mail/e-mail-printer.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/mail/e-mail-printer.c b/mail/e-mail-printer.c
index 309e2bdeef..07a3b4daed 100644
--- a/mail/e-mail-printer.c
+++ b/mail/e-mail-printer.c
@@ -729,13 +729,13 @@ emp_finalize (GObject *object)
}
static void
-e_mail_printer_class_init (EMailPrinterClass *klass)
+e_mail_printer_class_init (EMailPrinterClass *class)
{
GObjectClass *object_class;
- g_type_class_add_private (klass, sizeof (EMailPrinterPrivate));
+ g_type_class_add_private (class, sizeof (EMailPrinterPrivate));
- object_class = G_OBJECT_CLASS (klass);
+ object_class = G_OBJECT_CLASS (class);
object_class->set_property = emp_set_property;
object_class->get_property = emp_get_property;
object_class->finalize = emp_finalize;
@@ -750,8 +750,9 @@ e_mail_printer_class_init (EMailPrinterClass *klass)
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY));
- signals[SIGNAL_DONE] = g_signal_new ("done",
- G_TYPE_FROM_CLASS (klass),
+ signals[SIGNAL_DONE] = g_signal_new (
+ "done",
+ G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (EMailPrinterClass, done),
NULL, NULL,