aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-dialog.h
diff options
context:
space:
mode:
authorCrispin Flowerday <gnome@flowerday.cx>2005-01-04 03:27:04 +0800
committerCrispin Flowerday <crispin@src.gnome.org>2005-01-04 03:27:04 +0800
commit82a6f3e75f4e46be84fc3d650918badc8e1563a1 (patch)
tree96587b0254d758753372297b75b2195b3ccdb19c /lib/ephy-dialog.h
parent93497400220851d93705a0340dbff5d8d45d176f (diff)
downloadgsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar.gz
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar.bz2
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar.lz
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar.xz
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.tar.zst
gsoc2013-epiphany-82a6f3e75f4e46be84fc3d650918badc8e1563a1.zip
Prefix class structs with '_' so that the python code generator finds it.
2005-01-03 Crispin Flowerday <gnome@flowerday.cx> * lib/ephy-dialog.c: * lib/ephy-dialog.h: Prefix class structs with '_' so that the python code generator finds it.
Diffstat (limited to 'lib/ephy-dialog.h')
-rw-r--r--lib/ephy-dialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ephy-dialog.h b/lib/ephy-dialog.h
index 9cf7aebf7..3a861cffb 100644
--- a/lib/ephy-dialog.h
+++ b/lib/ephy-dialog.h
@@ -35,9 +35,9 @@ G_BEGIN_DECLS
#define EPHY_IS_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_DIALOG))
#define EPHY_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_DIALOG, EphyDialogClass))
-typedef struct EphyDialogClass EphyDialogClass;
-typedef struct EphyDialog EphyDialog;
-typedef struct EphyDialogPrivate EphyDialogPrivate;
+typedef struct _EphyDialogClass EphyDialogClass;
+typedef struct _EphyDialog EphyDialog;
+typedef struct _EphyDialogPrivate EphyDialogPrivate;
typedef enum
{
@@ -53,7 +53,7 @@ typedef struct
GType data_type;
} EphyDialogProperty;
-struct EphyDialogClass
+struct _EphyDialogClass
{
GObjectClass parent_class;
@@ -71,7 +71,7 @@ struct EphyDialogClass
void (* show) (EphyDialog *dialog);
};
-struct EphyDialog
+struct _EphyDialog
{
GObject parent;