diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-23 04:27:39 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-23 04:27:39 +0800 |
commit | 57376c8471fbe1b18aae995e7074a24ed6b38680 (patch) | |
tree | 5678bd79d4879d1c774cbbfb82aed5d2d58b3405 /embed | |
parent | b7b80c09ae988ffd6725fde6cb6fe082978cedd6 (diff) | |
download | gsoc2013-epiphany-57376c8471fbe1b18aae995e7074a24ed6b38680.tar.gz gsoc2013-epiphany-57376c8471fbe1b18aae995e7074a24ed6b38680.tar.zst gsoc2013-epiphany-57376c8471fbe1b18aae995e7074a24ed6b38680.zip |
ephy-embed: move the other statusbar id to the .c file
It's not used anywhere else.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 2 | ||||
-rw-r--r-- | embed/ephy-embed.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 36b1773dc..0fbc3e53b 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -56,6 +56,8 @@ static gboolean ephy_embed_inspect_close_cb (WebKitWebInspector *inspector, #define EPHY_EMBED_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_EMBED, EphyEmbedPrivate)) +#define EPHY_EMBED_STATUSBAR_TAB_MESSAGE_CONTEXT_DESCRIPTION "tab_message" + typedef struct { gchar *text; guint context_id; diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 8188c681a..4be26fa51 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -40,8 +40,6 @@ typedef struct _EphyEmbedClass EphyEmbedClass; typedef struct _EphyEmbed EphyEmbed; typedef struct _EphyEmbedPrivate EphyEmbedPrivate; -#define EPHY_EMBED_STATUSBAR_TAB_MESSAGE_CONTEXT_DESCRIPTION "tab_message" - struct _EphyEmbed { GtkBox parent_instance; |