diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-10-12 01:36:32 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-10-12 01:36:32 +0800 |
commit | 0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2 (patch) | |
tree | 0ea5527c72c09963efef6ae55938c3b36969ad04 /embed/ephy-embed.c | |
parent | 6c4b99d210e3391080ce18502a507dc38869189c (diff) | |
download | gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar.gz gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar.bz2 gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar.lz gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar.xz gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.tar.zst gsoc2013-epiphany-0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2.zip |
Encoding menu improvements, part 2: Implement ephy_embed_get_encoding, and
2003-10-11 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.c: (ephy_embed_get_encoding):
* embed/ephy-embed.h:
* embed/mozilla/EphyWrapper.cpp:
* embed/mozilla/EphyWrapper.h:
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-encoding-menu.c: (ephy_encoding_menu_verb_cb),
(update_encoding_menu_cb), (ephy_encoding_menu_set_window):
Encoding menu improvements, part 2: Implement ephy_embed_get_encoding,
and use it in the menu to indicate the encoding of the loaded page.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 9b3b31289..145498665 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -575,6 +575,14 @@ ephy_embed_set_encoding (EphyEmbed *embed, } gresult +ephy_embed_get_encoding (EphyEmbed *embed, + char **encoding) +{ + EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); + return klass->get_encoding (embed, encoding); +} + +gresult ephy_embed_print (EphyEmbed *embed, EmbedPrintInfo *info) { |