diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-04 02:07:19 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-04 02:07:19 +0800 |
commit | c4b9c39ec588430681b25d52a1cd5f57dab716d4 (patch) | |
tree | 6b35647c1ea93b1b6b9a185dbe7a043d0a631a46 /embed/mozilla | |
parent | 3c97a9bf4a384a76c51e4684b2d9a02266cf458f (diff) | |
download | gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar.gz gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar.bz2 gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar.lz gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar.xz gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.tar.zst gsoc2013-epiphany-c4b9c39ec588430681b25d52a1cd5f57dab716d4.zip |
Add types for some enums and flags.
2005-01-03 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-event.c: (ephy_embed_event_context_get_type),
(ephy_embed_event_type_get_type):
* embed/ephy-embed-event.h:
* embed/ephy-embed.c: (ephy_embed_net_state_get_type),
(ephy_embed_ppv_navigation_get_type),
(ephy_embed_security_level_get_type), (ephy_embed_base_init):
* embed/ephy-embed.h:
* embed/mozilla/mozilla-embed.cpp:
* lib/ephy-marshal.list:
* src/ephy-tab.c: (update_net_state_message),
(build_progress_from_requests), (ephy_tab_net_state_cb):
Add types for some enums and flags.
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index 14a62ff46..8019e7fbe 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -836,13 +836,13 @@ mozilla_embed_net_state_all_cb (GtkMozEmbed *embed, const char *aURI, gint state, guint status, MozillaEmbed *membed) { - EmbedState estate = EMBED_STATE_UNKNOWN; + EmbedNetState estate = EMBED_STATE_UNKNOWN; int i; struct { guint state; - EmbedState embed_state; + EmbedNetState embed_state; } conversion_map [] = { @@ -861,7 +861,7 @@ mozilla_embed_net_state_all_cb (GtkMozEmbed *embed, const char *aURI, { if (state & conversion_map[i].state) { - estate = (EmbedState) (estate | conversion_map[i].embed_state); + estate = (EmbedNetState) (estate | conversion_map[i].embed_state); } } |