diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-06 03:55:20 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-06 03:55:20 +0800 |
commit | e536dd57924f9f0af06ebd5650bc8313d90aeed2 (patch) | |
tree | 29b3d6423fd9bd5175766a90f871ba0862671192 /embed/ephy-base-embed.h | |
parent | 54deead24517e888803185d6cbdfb2108aa86802 (diff) | |
download | gsoc2013-epiphany-e536dd57924f9f0af06ebd5650bc8313d90aeed2.tar.gz gsoc2013-epiphany-e536dd57924f9f0af06ebd5650bc8313d90aeed2.tar.zst gsoc2013-epiphany-e536dd57924f9f0af06ebd5650bc8313d90aeed2.zip |
Use K&R (pseudo) indentation style for new files.
svn path=/trunk/; revision=7631
Diffstat (limited to 'embed/ephy-base-embed.h')
-rw-r--r-- | embed/ephy-base-embed.h | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/embed/ephy-base-embed.h b/embed/ephy-base-embed.h index a429a8c11..82c303a49 100644 --- a/embed/ephy-base-embed.h +++ b/embed/ephy-base-embed.h @@ -1,3 +1,25 @@ +/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */ +/* + * Copyright © 2000-2004 Marco Pesenti Gritti + * Copyright © 2003-2007 Christian Persch + * Copyright © 2007 Xan Lopez + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #ifndef __EPHY_BASE_EMBED_H__ #define __EPHY_BASE_EMBED_H__ @@ -6,24 +28,22 @@ G_BEGIN_DECLS -#define EPHY_TYPE_BASE_EMBED (ephy_base_embed_get_type()) +#define EPHY_TYPE_BASE_EMBED (ephy_base_embed_get_type ()) #define EPHY_BASE_EMBED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPHY_TYPE_BASE_EMBED, EphyBaseEmbed)) #define EPHY_BASE_EMBED_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EPHY_TYPE_BASE_EMBED, EphyBaseEmbedClass)) #define EPHY_IS_BASE_EMBED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EPHY_TYPE_BASE_EMBED)) #define EPHY_IS_BASE_EMBED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EPHY_TYPE_BASE_EMBED)) #define EPHY_BASE_EMBED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EPHY_TYPE_BASE_EMBED, EphyBaseEmbedClass)) -typedef struct _EphyBaseEmbed EphyBaseEmbed; +typedef struct _EphyBaseEmbed EphyBaseEmbed; typedef struct _EphyBaseEmbedClass EphyBaseEmbedClass; typedef struct _EphyBaseEmbedPrivate EphyBaseEmbedPrivate; -struct _EphyBaseEmbedClass -{ +struct _EphyBaseEmbedClass { GtkBinClass parent_class; }; -struct _EphyBaseEmbed -{ +struct _EphyBaseEmbed { GtkBin parent_instance; /*< private >*/ |