From 81e5428a59194dd38cf2a07b2d3f9b4b6f81f6ef Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 26 Jul 2010 00:30:38 -0400 Subject: Coding style and whitespace cleanup. --- mail/e-mail-pane.h | 46 +++++++++++++++++++++++++++++++--------------- 1 file changed, 31 insertions(+), 15 deletions(-) (limited to 'mail/e-mail-pane.h') diff --git a/mail/e-mail-pane.h b/mail/e-mail-pane.h index f8383d2b76..2e20dd772d 100644 --- a/mail/e-mail-pane.h +++ b/mail/e-mail-pane.h @@ -1,4 +1,6 @@ /* + * e-mail-pane.h + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -10,7 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see + * License along with the program; if not, see * * * Authors: @@ -20,30 +22,44 @@ * */ -#ifndef _E_MAIL_PANE_H_ -#define _E_MAIL_PANE_H_ +#ifndef E_MAIL_PANE_H +#define E_MAIL_PANE_H #include -#define E_MAIL_PANE_TYPE (e_mail_pane_get_type ()) -#define E_MAIL_PANE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_MAIL_PANE_TYPE, MailFolderView)) -#define E_MAIL_PANE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_MAIL_PANE_TYPE, MailFolderViewClass)) -#define IS_E_MAIL_PANE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_MAIL_PANE_TYPE)) -#define IS_E_MAIL_PANE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_MAIL_PANE_TYPE)) -#define E_MAIL_PANE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), E_MAIL_PANE_TYPE, EMailPaneClass)) +#define E_TYPE_MAIL_PANE \ + (e_mail_pane_get_type ()) +#define E_MAIL_PANE(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), E_TYPE_MAIL_PANE, MailFolderView)) +#define E_MAIL_PANE_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST \ + ((cls), E_TYPE_MAIL_PANE, MailFolderViewClass)) +#define E_IS_MAIL_PANE(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), E_TYPE_MAIL_PANE)) +#define E_IS_MAIL_PANE_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), E_TYPE_MAIL_PANE)) +#define E_MAIL_PANE_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS \ + ((obj), E_TYPE_MAIL_PANE, EMailPaneClass)) +G_BEGIN_DECLS +typedef struct _EMailPane EMailPane; +typedef struct _EMailPaneClass EMailPaneClass; typedef struct _EMailPanePrivate EMailPanePrivate; -typedef struct _EMailPane { +struct _EMailPane { GtkVBox parent; - EMailPanePrivate *priv; -} EMailPane; +}; -typedef struct _EMailPaneClass { +struct _EMailPaneClass { GtkVBoxClass parent_class; +}; -} EMailPaneClass; +G_END_DECLS -#endif +#endif /* E_MAIL_PANE_H */ -- cgit v1.2.3