diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-09 02:11:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-09 02:11:56 +0800 |
commit | ab5fe114f9aace01c98a6407fb657adf274cb531 (patch) | |
tree | 5d69371a1d0da9fe5f682aff181539d71aff6dc7 /embed/mozilla/mozilla-embed.h | |
parent | 859bd4706dba82e469d699aebd3f6336c0482c7a (diff) | |
download | gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.gz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.bz2 gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.lz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.xz gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.tar.zst gsoc2013-epiphany-ab5fe114f9aace01c98a6407fb657adf274cb531.zip |
Fix compiler warning about anon enum mismatch.
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyBrowser.h:
Fix compiler warning about anon enum mismatch.
Diffstat (limited to 'embed/mozilla/mozilla-embed.h')
-rw-r--r-- | embed/mozilla/mozilla-embed.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/embed/mozilla/mozilla-embed.h b/embed/mozilla/mozilla-embed.h index 4eba0dba9..64bb5ccd8 100644 --- a/embed/mozilla/mozilla-embed.h +++ b/embed/mozilla/mozilla-embed.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2003 Marco Pesenti Gritti + * Copyright (C) 2000-2004 Marco Pesenti Gritti * * 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 @@ -37,13 +37,15 @@ G_BEGIN_DECLS #define MOZILLA_IS_EMBED_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), MOZILLA_TYPE_EMBED)) #define MOZILLA_EMBED_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), MOZILLA_TYPE_EMBED, MozillaEmbedClass)) -typedef struct MozillaEmbedClass MozillaEmbedClass; -typedef struct MozillaEmbed MozillaEmbed; -typedef struct MozillaEmbedPrivate MozillaEmbedPrivate; +typedef struct MozillaEmbedClass MozillaEmbedClass; +typedef struct MozillaEmbed MozillaEmbed; +typedef struct MozillaEmbedPrivate MozillaEmbedPrivate; struct MozillaEmbed { GtkMozEmbed parent; + + /*< private >*/ MozillaEmbedPrivate *priv; }; |