aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-09 05:12:09 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-09 05:12:09 +0800
commit123e540f40f5bc12abdab2262bf97c153c3174fe (patch)
treed11d27b82c8722873cfdf684b17ebd00e9190397 /src
parent02082b84fae3819e598e8b339f28e1b2efc575f2 (diff)
downloadgsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar.gz
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar.bz2
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar.lz
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar.xz
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.tar.zst
gsoc2013-epiphany-123e540f40f5bc12abdab2262bf97c153c3174fe.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')
-rw-r--r--src/ephy-tab.c2
-rw-r--r--src/ephy-tab.h9
-rw-r--r--src/ephy-window.c2
-rw-r--r--src/ephy-window.h12
4 files changed, 10 insertions, 15 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c
index ad2bbd9ef..86897e764 100644
--- a/src/ephy-tab.c
+++ b/src/ephy-tab.c
@@ -65,7 +65,7 @@
#define CONF_LOCKDOWN_DISABLE_JAVASCRIPT_CHROME "/apps/epiphany/lockdown/disable_javascript_chrome"
-struct EphyTabPrivate
+struct _EphyTabPrivate
{
char *status_message;
char *link_message;
diff --git a/src/ephy-tab.h b/src/ephy-tab.h
index b56105510..b94ec81eb 100644
--- a/src/ephy-tab.h
+++ b/src/ephy-tab.h
@@ -35,9 +35,9 @@ G_BEGIN_DECLS
#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 _EphyTabClass EphyTabClass;
typedef struct _EphyTab EphyTab;
-typedef struct EphyTabPrivate EphyTabPrivate;
+typedef struct _EphyTabPrivate EphyTabPrivate;
typedef enum
{
@@ -61,14 +61,11 @@ struct _EphyTab
EphyTabPrivate *priv;
};
-struct EphyTabClass
+struct _EphyTabClass
{
GtkBinClass parent_class;
};
-/* Include the header down here to resolve circular dependency */
-#include "ephy-window.h"
-
GType ephy_tab_get_type (void);
EphyTab *ephy_tab_new (void);
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 2758d4c99..ce09eaa57 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -321,7 +321,7 @@ static guint ephy_popups_n_entries = G_N_ELEMENTS (ephy_popups_entries);
#define EPHY_WINDOW_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_WINDOW, EphyWindowPrivate))
-struct EphyWindowPrivate
+struct _EphyWindowPrivate
{
GtkWidget *main_vbox;
GtkWidget *menu_dock;
diff --git a/src/ephy-window.h b/src/ephy-window.h
index cace444f5..995c6b818 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
{
@@ -52,14 +53,11 @@ struct _EphyWindow
GObject *ui_merge;
};
-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);