diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-14 19:36:37 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-14 19:36:37 +0800 |
commit | 15dd9817a91d1c0b9a12f5dc5999d08c38c6d396 (patch) | |
tree | fd433dfc31a7336306628e4ceb200b6428b05460 /src/ephy-history-window.c | |
parent | ee91f3c5d1faa4d0582d10778818827c7f62f5ec (diff) | |
download | gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar.gz gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar.bz2 gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar.lz gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar.xz gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.tar.zst gsoc2013-epiphany-15dd9817a91d1c0b9a12f5dc5999d08c38c6d396.zip |
Make location a normal entry.
2003-10-14 Marco Pesenti Gritti <marco@gnome.org>
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_class_init),
(ephy_location_entry_construct_contents),
(ephy_location_entry_init), (ephy_location_entry_activate):
* lib/widgets/ephy-location-entry.h:
* src/ephy-history-window.c: (confirmation_dialog_response_cb):
* src/ephy-location-action.c: (remove_completion_actions),
(add_completion_actions), (connect_proxy),
(ephy_location_action_set_address):
* src/ephy-location-action.h:
* src/toolbar.c:
* src/toolbar.h:
Make location a normal entry.
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r-- | src/ephy-history-window.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 8db577231..22e1d3b68 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -223,25 +223,11 @@ static void confirmation_dialog_response_cb (GtkDialog *dialog, gint response, EphyHistoryWindow *editor) { - const GList *windows; - Session *session; - gtk_widget_destroy (GTK_WIDGET (dialog)); if (response != GTK_RESPONSE_OK) return; - session = EPHY_SESSION (ephy_shell_get_session (ephy_shell)); - windows = session_get_windows (session); - - for (; windows != NULL; windows = windows->next) - { - Toolbar *t; - - t = ephy_window_get_toolbar (EPHY_WINDOW (windows->data)); - toolbar_clear_location_history (t); - } - ephy_history_clear (editor->priv->history); } |