aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-09 05:11:17 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-09 05:11:17 +0800
commitffadac2886d8cc191bff8e919532c1d5c3d0b929 (patch)
treedb3d3c4bcf6d6db38eeb18f39c644919e5397ae5 /src/ephy-window.h
parent4572d3fa946660dc1c2b869453a0fbd475f36d42 (diff)
downloadgsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar.gz
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar.bz2
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar.lz
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar.xz
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.tar.zst
gsoc2013-epiphany-ffadac2886d8cc191bff8e919532c1d5c3d0b929.zip
No circular dependencies anymore.
2004-10-08 Christian Persch <chpe@cvs.gnome.org> * src/ephy-tab.c: * src/ephy-tab.h: * src/ephy-window.c: * src/ephy-window.h: No circular dependencies anymore.
Diffstat (limited to 'src/ephy-window.h')
-rw-r--r--src/ephy-window.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/ephy-window.h b/src/ephy-window.h
index 433b44cbb..92ddb4389 100644
--- a/src/ephy-window.h
+++ b/src/ephy-window.h
@@ -21,6 +21,7 @@
#ifndef EPHY_WINDOW_H
#define EPHY_WINDOW_H
+#include "ephy-notebook.h"
#include "ephy-embed.h"
#include "ephy-tab.h"
#include "ephy-dialog.h"
@@ -38,9 +39,9 @@ G_BEGIN_DECLS
#define EPHY_IS_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_WINDOW))
#define EPHY_WINDOW_GET_CLASS(o)(G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_WINDOW, EphyWindowClass))
-typedef struct EphyWindowClass EphyWindowClass;
-typedef struct _EphyWindow EphyWindow;
-typedef struct EphyWindowPrivate EphyWindowPrivate;
+typedef struct _EphyWindowClass EphyWindowClass;
+typedef struct _EphyWindow EphyWindow;
+typedef struct _EphyWindowPrivate EphyWindowPrivate;
struct _EphyWindow
{
@@ -50,14 +51,11 @@ struct _EphyWindow
EphyWindowPrivate *priv;
};
-struct EphyWindowClass
+struct _EphyWindowClass
{
GtkWindowClass parent_class;
};
-/* Include the header down here to resolve circular dependency */
-#include "ephy-notebook.h"
-
GType ephy_window_get_type (void);
EphyWindow *ephy_window_new (void);