aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorCrispin Flowerday <gnome@flowerday.cx>2005-01-04 03:22:58 +0800
committerCrispin Flowerday <crispin@src.gnome.org>2005-01-04 03:22:58 +0800
commit93497400220851d93705a0340dbff5d8d45d176f (patch)
tree8fabe4abf9c8793ac6ebb59bc1026378acb77227 /src/ephy-window.c
parent569106975500d16750f6bf9dcfd716c4e898f891 (diff)
downloadgsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.gz
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.bz2
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.lz
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.xz
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.zst
gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.zip
Ensure that flags and enums start with 'Ephy'
2005-01-03 Crispin Flowerday <gnome@flowerday.cx> * embed/ephy-embed-event.c: * embed/ephy-embed-event.h: * embed/ephy-embed-persist.c: (ephy_embed_persist_set_flags): * embed/ephy-embed-persist.h: * embed/ephy-embed.c: (ephy_embed_base_init), (ephy_embed_get_security_level), (ephy_embed_print_preview_navigate): * embed/ephy-embed.h: * embed/mozilla/EphyBrowser.cpp: * embed/mozilla/EphyBrowser.h: * embed/mozilla/EphyHeaderSniffer.cpp: * embed/mozilla/MozDownload.cpp: * embed/mozilla/mozilla-embed-event.cpp: * embed/mozilla/mozilla-embed-persist.cpp: * embed/mozilla/mozilla-embed.cpp: * src/ephy-tab.c: (ephy_tab_address_expire_get_type), (ephy_tab_navigation_flags_get_type), (ephy_tab_document_type_cb), (update_net_state_message), (build_progress_from_requests), (ephy_tab_net_state_cb), (ephy_tab_dom_mouse_click_cb), (ephy_tab_security_change_cb), (ephy_tab_update_navigation_flags), (ephy_tab_set_location), (ephy_tab_set_security_level): * src/ephy-tab.h: * src/ephy-window.c: (sync_tab_document_type), (sync_tab_navigation), (sync_tab_security), (sync_tab_zoom), (update_popups_tooltips), (show_embed_popup), (ephy_window_class_init): * src/popup-commands.c: (popup_cmd_copy_link_address): Ensure that flags and enums start with 'Ephy'
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 58c1b4326..abb509098 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -1214,7 +1214,7 @@ sync_tab_document_type (EphyTab *tab,
{
GtkActionGroup *action_group;
GtkAction *action;
- EmbedDocumentType type;
+ EphyEmbedDocumentType type;
gboolean can_find, enable;
/* update zoom actions */
@@ -1297,7 +1297,7 @@ sync_tab_message (EphyTab *tab, GParamSpec *pspec, EphyWindow *window)
static void
sync_tab_navigation (EphyTab *tab, GParamSpec *pspec, EphyWindow *window)
{
- TabNavigationFlags flags;
+ EphyTabNavigationFlags flags;
GtkActionGroup *action_group;
GtkAction *action;
gboolean up = FALSE, back = FALSE, forward = FALSE;
@@ -1344,7 +1344,7 @@ static void
sync_tab_security (EphyTab *tab, GParamSpec *pspec, EphyWindow *window)
{
EphyEmbed *embed;
- EmbedSecurityLevel level;
+ EphyEmbedSecurityLevel level;
char *description = NULL;
char *state = NULL;
char *tooltip;
@@ -1540,7 +1540,7 @@ sync_tab_zoom (EphyTab *tab, GParamSpec *pspec, EphyWindow *window)
{
GtkActionGroup *action_group;
GtkAction *action;
- EmbedDocumentType type;
+ EphyEmbedDocumentType type;
gboolean can_zoom_in = TRUE, can_zoom_out = TRUE, can_zoom_normal = FALSE, can_zoom;
float zoom;
@@ -1637,7 +1637,7 @@ get_name_from_address_value (const GValue *value)
static void
update_popups_tooltips (EphyWindow *window, EphyEmbedEvent *event)
{
- EmbedEventContext context;
+ EphyEmbedEventContext context;
GtkActionGroup *group = window->priv->popups_action_group;
const GValue *value;
GtkAction *action;
@@ -1733,7 +1733,7 @@ show_embed_popup (EphyWindow *window, EphyTab *tab, EphyEmbedEvent *event)
{
GtkActionGroup *action_group;
GtkAction *action;
- EmbedEventContext context;
+ EphyEmbedEventContext context;
const char *popup;
const GValue *value;
gboolean framed, has_background, can_open_in_new;
@@ -2318,7 +2318,7 @@ ephy_window_class_init (EphyWindowClass *klass)
g_param_spec_flags ("chrome",
"chrome",
"Window chrome",
- EPHY_TYPE_EMBED_CHROME_MASK,
+ EPHY_TYPE_EMBED_CHROME,
EPHY_EMBED_CHROME_ALL,
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_READWRITE));