aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-shell.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-12-30 05:05:09 +0800
committerChristian Persch <chpe@src.gnome.org>2003-12-30 05:05:09 +0800
commitc76b79acb1dd84aec4b91bae8841099699a38139 (patch)
tree2b0b28700be1db98ad314b12e00b4d76d6885fee /embed/ephy-embed-shell.h
parent6ca9d693750a2b0807670b0072ed5d162e12fea0 (diff)
downloadgsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar.gz
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar.bz2
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar.lz
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar.xz
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.tar.zst
gsoc2013-epiphany-c76b79acb1dd84aec4b91bae8841099699a38139.zip
Unified return type of ephy_embed_shell_get_X to be GObject *. Fixed all
2003-12-29 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-shell.c: (ephy_embed_shell_get_favicon_cache), (ephy_embed_shell_get_global_history), (ephy_embed_shell_get_downloader_view), (ephy_embed_shell_get_embed_single), (ephy_embed_shell_get_encodings), (ephy_embed_shell_check_mime), (ephy_embed_shell_class_init): * embed/ephy-embed-shell.h: * embed/mozilla/ContentHandler.cpp: * embed/mozilla/EphyHeaderSniffer.cpp: * embed/mozilla/GlobalHistory.cpp: * embed/mozilla/mozilla-notifiers.cpp: * src/bookmarks/ephy-bookmarks.c: (compute_lower_fav), (ephy_setup_history_notifiers): * src/ephy-completion-model.c: (ephy_completion_model_init): * src/ephy-shell.c: (ephy_shell_get_history_window): * src/ephy-tab.c: (ephy_tab_set_icon_address), (ephy_tab_address_cb), (ephy_tab_zoom_changed_cb): * src/ephy-toolbars-model.c: (impl_get_item_id): * src/prefs-dialog.c: (setup_font_combo), (prefs_clear_cache_button_clicked_cb): Unified return type of ephy_embed_shell_get_X to be GObject *. Fixed all callers.
Diffstat (limited to 'embed/ephy-embed-shell.h')
-rw-r--r--embed/ephy-embed-shell.h23
1 files changed, 7 insertions, 16 deletions
diff --git a/embed/ephy-embed-shell.h b/embed/ephy-embed-shell.h
index 3bff4327b..cc2febf60 100644
--- a/embed/ephy-embed-shell.h
+++ b/embed/ephy-embed-shell.h
@@ -21,17 +21,12 @@
#ifndef EPHY_EMBED_SHELL_H
#define EPHY_EMBED_SHELL_H
-#include "ephy-embed.h"
-#include "ephy-embed-single.h"
-#include "ephy-history.h"
-
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
#define EPHY_TYPE_EMBED_SHELL (ephy_embed_shell_get_type ())
-#define EPHY_EMBED_SHELL_IMPL (ephy_embed_shell_get_impl ())
#define EPHY_EMBED_SHELL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_EMBED_SHELL, EphyEmbedShell))
#define EPHY_EMBED_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_EMBED_SHELL, EphyEmbedShellClass))
#define EPHY_IS_EMBED_SHELL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_EMBED_SHELL))
@@ -62,26 +57,22 @@ struct EphyEmbedShell
struct EphyEmbedShellClass
{
GObjectClass parent_class;
-
- /* Methods */
- EphyHistory * (* get_global_history) (EphyEmbedShell *shell);
- GObject * (* get_downloader_view) (EphyEmbedShell *shell);
};
GType ephy_embed_shell_get_type (void);
-GObject *ephy_embed_shell_get_favicon_cache (EphyEmbedShell *ges);
+GObject *ephy_embed_shell_get_favicon_cache (EphyEmbedShell *ges);
-EphyHistory *ephy_embed_shell_get_global_history (EphyEmbedShell *shell);
+GObject *ephy_embed_shell_get_global_history (EphyEmbedShell *shell);
-GObject *ephy_embed_shell_get_downloader_view (EphyEmbedShell *shell);
+GObject *ephy_embed_shell_get_downloader_view (EphyEmbedShell *shell);
-GObject *ephy_embed_shell_get_encodings (EphyEmbedShell *shell);
+GObject *ephy_embed_shell_get_encodings (EphyEmbedShell *shell);
-EphyEmbedSingle *ephy_embed_shell_get_embed_single (EphyEmbedShell *shell);
+GObject *ephy_embed_shell_get_embed_single (EphyEmbedShell *shell);
-EphyMimePermission ephy_embed_shell_check_mime (EphyEmbedShell *shell,
- const char *mime_type);
+EphyMimePermission ephy_embed_shell_check_mime (EphyEmbedShell *shell,
+ const char *mime_type);
G_END_DECLS