aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.h
diff options
context:
space:
mode:
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);