aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@gnome.org>2009-12-02 10:43:54 +0800
committerDiego Escalante Urrelo <diegoe@gnome.org>2009-12-03 06:47:16 +0800
commit86d5198f311fc40dc0d22cfa0e2643fcde46317f (patch)
treecfc8611347ea2cd8e44cbeb7e2bb82f7ec8aa211 /src
parent57d1e4a28256b3204b9cbcadd6f52832e55a477c (diff)
downloadgsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar.gz
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar.bz2
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar.lz
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar.xz
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.tar.zst
gsoc2013-epiphany-86d5198f311fc40dc0d22cfa0e2643fcde46317f.zip
docs: ephy-window
Also make _ephy_window_set_context_event and _ephy_window_unset_context_event static since noone was using those. Bug #503852
Diffstat (limited to 'src')
-rw-r--r--src/ephy-window.c11
-rw-r--r--src/ephy-window.h5
2 files changed, 9 insertions, 7 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 5991190f7..aa10f2ab1 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -68,6 +68,13 @@
#include <X11/XF86keysym.h>
#endif
+/**
+ * SECTION:ephy-window
+ * @short_description: Epiphany's main #GtkWindow widget
+ *
+ * #EphyWindow is Epiphany's main widget.
+ */
+
static void ephy_window_class_init (EphyWindowClass *klass);
static void ephy_window_init (EphyWindow *gs);
static GObject *ephy_window_constructor (GType type,
@@ -2017,7 +2024,7 @@ idle_unref_context_event (EphyWindow *window)
return FALSE;
}
-void
+static void
_ephy_window_set_context_event (EphyWindow *window,
EphyEmbedEvent *event)
{
@@ -2037,7 +2044,7 @@ _ephy_window_set_context_event (EphyWindow *window,
priv->context_event = event != NULL ? g_object_ref (event) : NULL;
}
-void
+static void
_ephy_window_unset_context_event (EphyWindow *window)
{
EphyWindowPrivate *priv = window->priv;
diff --git a/src/ephy-window.h b/src/ephy-window.h
index de7f21a7c..e40c8dbf8 100644
--- a/src/ephy-window.h
+++ b/src/ephy-window.h
@@ -88,11 +88,6 @@ gboolean ephy_window_get_is_print_preview(EphyWindow *window);
EphyEmbedEvent *ephy_window_get_context_event (EphyWindow *window);
-void _ephy_window_set_context_event (EphyWindow *window,
- EphyEmbedEvent *event);
-
-void _ephy_window_unset_context_event (EphyWindow *window);
-
G_END_DECLS
#endif