aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-10-30 11:38:58 +0800
committerXan Lopez <xan@gnome.org>2010-11-06 14:22:32 +0800
commit25645b10da23df03b84989f2ff7e910f0c2069f6 (patch)
treec78fcce0ef5f983ea3427b4955c62c4a375c4ff4 /embed
parent35a4ffa0fdfe4fe3c993345467cd30cc61f12d0c (diff)
downloadgsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar.gz
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar.bz2
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar.lz
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar.xz
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.tar.zst
gsoc2013-epiphany-25645b10da23df03b84989f2ff7e910f0c2069f6.zip
ephy-web-view: remove ge-dom-mouse signals
They are not even emitted anymore, and are unused.
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-web-view.c33
-rw-r--r--embed/ephy-web-view.h4
2 files changed, 0 insertions, 37 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c
index 8252adc9e..4d84dc003 100644
--- a/embed/ephy-web-view.c
+++ b/embed/ephy-web-view.c
@@ -1462,39 +1462,6 @@ ephy_web_view_class_init (EphyWebViewClass *klass)
G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE,
G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
- * EphyWebView::ge-dom-mouse-click:
- * @view: the #EphyWebView that received the signal
- * @event: the #EphyEmbedEvent which triggered this signal
- *
- * The ::ge_dom_mouse_click signal is emitted when the user clicks in the @view.
- **/
- g_signal_new ("ge_dom_mouse_click",
- EPHY_TYPE_WEB_VIEW,
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (EphyWebViewClass, dom_mouse_click),
- g_signal_accumulator_true_handled, NULL,
- ephy_marshal_BOOLEAN__OBJECT,
- G_TYPE_BOOLEAN,
- 1,
- G_TYPE_OBJECT);
-/**
- * EphyWebView::ge-dom-mouse-down:
- * @view: the #EphyWebView that received the signal
- * @event: the #EphyEmbedEvent which triggered this signal
- *
- * The ::ge_dom_mouse_down signal is emitted when the user depresses a mouse
- * button.
- **/
- g_signal_new ("ge_dom_mouse_down",
- EPHY_TYPE_WEB_VIEW,
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (EphyWebViewClass, dom_mouse_down),
- g_signal_accumulator_true_handled, NULL,
- ephy_marshal_BOOLEAN__OBJECT,
- G_TYPE_BOOLEAN,
- 1,
- G_TYPE_OBJECT);
-/**
* EphyWebView::ge-modal-alert:
* @view: the #EphyWebView that received the signal
*
diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h
index 94e7cced9..e37d0e2db 100644
--- a/embed/ephy-web-view.h
+++ b/embed/ephy-web-view.h
@@ -107,10 +107,6 @@ struct _EphyWebViewClass
const char *type,
const char *title,
const char *address);
- gboolean (* dom_mouse_click) (EphyWebView *view,
- EphyEmbedEvent *event);
- gboolean (* dom_mouse_down) (EphyWebView *view,
- EphyEmbedEvent *event);
void (* popup_blocked) (EphyWebView *view,
const char *address,
const char *target,