aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r--src/ephy-notebook.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 171be42a1..001ac21f1 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -441,17 +441,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context,
}
else
{
- char *text;
-
- text = (char *) gtk_selection_data_get_text (selection_data);
- if (text != NULL) {
- ephy_link_open (EPHY_LINK (notebook), text, tab,
- tab ? 0 : EPHY_LINK_NEW_TAB);
- g_free (text);
- }
- else {
- g_return_if_reached ();
- }
+ g_return_if_reached ();
}
}
@@ -514,7 +504,6 @@ ephy_notebook_init (EphyNotebook *notebook)
GTK_DEST_DEFAULT_DROP,
url_drag_types, G_N_ELEMENTS (url_drag_types),
GDK_ACTION_MOVE | GDK_ACTION_COPY);
- gtk_drag_dest_add_text_targets (GTK_WIDGET(notebook));
notebook->priv->tabs_vis_notifier_id = eel_gconf_notification_add
(CONF_ALWAYS_SHOW_TABS_BAR,
@@ -700,7 +689,6 @@ build_tab_label (EphyNotebook *nb, EphyTab *tab)
gtk_drag_dest_set (hbox, GTK_DEST_DEFAULT_ALL,
url_drag_types, G_N_ELEMENTS (url_drag_types),
GDK_ACTION_MOVE | GDK_ACTION_COPY);
- gtk_drag_dest_add_text_targets (label);
gtk_widget_show (hbox);
gtk_widget_show (label_ebox);