aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2007-10-28 21:02:13 +0800
committerChristian Persch <chpe@src.gnome.org>2007-10-28 21:02:13 +0800
commitecf681be3b8cae7de89d361f3ffef909c8e15114 (patch)
treecc73c9729f5d7066eb37e725a0b94e78c472afe5 /src
parent08b179d94af391e7a93e14fc42cf6e471111a385 (diff)
downloadgsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar.gz
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar.bz2
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar.lz
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar.xz
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.tar.zst
gsoc2013-epiphany-ecf681be3b8cae7de89d361f3ffef909c8e15114.zip
Remove ephy-tab.h. This breaks the build; we'll fix it step by step.
svn path=/trunk/; revision=7579
Diffstat (limited to 'src')
-rw-r--r--src/ephy-tab.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/ephy-tab.h b/src/ephy-tab.h
deleted file mode 100644
index e2f042b07..000000000
--- a/src/ephy-tab.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright © 2000-2003 Marco Pesenti Gritti
- * Copyright © 2003, 2004, 2005 Christian Persch
- *
- * 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.
- *
- * $Id$
- */
-
-#ifndef EPHY_TAB_H
-#define EPHY_TAB_H
-
-#include "ephy-embed.h"
-
-#include <gtk/gtkbin.h>
-
-G_BEGIN_DECLS
-
-#define EPHY_TYPE_TAB (ephy_tab_get_type ())
-#define EPHY_TAB(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_TAB, EphyTab))
-#define EPHY_TAB_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_TAB, EphyTabClass))
-#define EPHY_IS_TAB(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_TAB))
-#define EPHY_IS_TAB_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_TAB))
-#define EPHY_TAB_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_TAB, EphyTabClass))
-
-typedef struct _EphyTabClass EphyTabClass;
-typedef struct _EphyTab EphyTab;
-typedef struct _EphyTabPrivate EphyTabPrivate;
-
-struct _EphyTab
-{
- GtkBin parent;
-
- /*< private >*/
- EphyTabPrivate *priv;
-};
-
-struct _EphyTabClass
-{
- GtkBinClass parent_class;
-};
-
-GType ephy_tab_get_type (void);
-
-EphyTab *ephy_tab_new (void);
-
-EphyEmbed *ephy_tab_get_embed (EphyTab *tab);
-
-EphyTab *ephy_tab_for_embed (EphyEmbed *embed);
-
-void ephy_tab_get_size (EphyTab *tab,
- int *width,
- int *height);
-
-void ephy_tab_set_size (EphyTab *tab,
- int width,
- int height);
-
-G_END_DECLS
-
-#endif