diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-02 04:09:33 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-02 04:09:33 +0800 |
commit | 1d8491a1dcd425eaeeb39739fec95e892ba641d5 (patch) | |
tree | 5b673229f26985b427c52433e6d7731074963247 /src | |
parent | 2a830a379ab4c38b512ee521ccf10ba9cb28da53 (diff) | |
download | gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.gz gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.bz2 gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.lz gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.xz gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.tar.zst gsoc2013-epiphany-1d8491a1dcd425eaeeb39739fec95e892ba641d5.zip |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 58 | ||||
-rw-r--r-- | src/bookmarks/ephy-new-bookmark.c | 2 | ||||
-rw-r--r-- | src/ephy-nautilus-view.c | 5 | ||||
-rw-r--r-- | src/ephy-shell.c | 2 | ||||
-rw-r--r-- | src/ephy-tab.c | 2 | ||||
-rwxr-xr-x | src/pdm-dialog.c | 2 | ||||
-rw-r--r-- | src/popup-commands.c | 4 |
7 files changed, 38 insertions, 37 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index cad9cd290..e2b4a65e2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,49 +41,49 @@ endif epiphany_SOURCES = \ $(ephy_automation_interface_idl_sources) \ $(nautilus_view_sources) \ - ui-prefs.c \ - ui-prefs.h \ - prefs-dialog.c \ - prefs-dialog.h \ - toolbar.c \ - toolbar.h \ - statusbar.c \ - statusbar.h \ - ephy-main.c \ + appearance-prefs.c \ + appearance-prefs.h \ ephy-automation.c \ ephy-automation.h \ + ephy-favorites-menu.c \ + ephy-favorites-menu.h \ + ephy-history-model.c \ + ephy-history-model.h \ + ephy-main.c \ + ephy-navigation-button.c \ + ephy-navigation-button.h \ ephy-shell.c \ ephy-shell.h \ ephy-tab.c \ ephy-tab.h \ + ephy-tbi.c \ + ephy-tbi.h \ ephy-window.c \ ephy-window.h \ - window-commands.c \ - window-commands.h \ - popup-commands.c \ - popup-commands.h \ - history-dialog.c \ - history-dialog.h \ - ppview-toolbar.c \ - ppview-toolbar.h \ - session.c \ - session.h \ general-prefs.c \ general-prefs.h \ + history-dialog.c \ + history-dialog.h \ language-editor.c \ language-editor.h \ - appearance-prefs.c \ - appearance-prefs.h \ pdm-dialog.c \ pdm-dialog.h \ - ephy-favorites-menu.c \ - ephy-favorites-menu.h \ - ephy-history-model.c \ - ephy-history-model.h \ - ephy-tbi.c \ - ephy-tbi.h \ - ephy-navigation-button.c \ - ephy-navigation-button.h + popup-commands.c \ + popup-commands.h \ + prefs-dialog.c \ + prefs-dialog.h \ + ppview-toolbar.c \ + ppview-toolbar.h \ + session.c \ + session.h \ + statusbar.c \ + statusbar.h \ + toolbar.c \ + toolbar.h \ + ui-prefs.c \ + ui-prefs.h \ + window-commands.c \ + window-commands.h epiphany_LDADD = \ $(top_builddir)/embed/libephyembed.la \ diff --git a/src/bookmarks/ephy-new-bookmark.c b/src/bookmarks/ephy-new-bookmark.c index ee0d4b983..2b282fd6e 100644 --- a/src/bookmarks/ephy-new-bookmark.c +++ b/src/bookmarks/ephy-new-bookmark.c @@ -186,6 +186,7 @@ build_editing_table (EphyNewBookmark *editor) gtk_label_set_markup (GTK_LABEL (label), _("<b>Title:</b>")); gtk_widget_show (label); entry = gtk_entry_new (); + gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE); editor->priv->title_entry = entry; gtk_widget_set_size_request (entry, 200, -1); gtk_widget_show (entry); @@ -197,6 +198,7 @@ build_editing_table (EphyNewBookmark *editor) gtk_label_set_markup (GTK_LABEL (label), _("<b>Keywords:</b>")); gtk_widget_show (label); entry = ephy_keywords_entry_new (); + gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE); ephy_keywords_entry_set_bookmarks (EPHY_KEYWORDS_ENTRY (entry), editor->priv->bookmarks); editor->priv->keywords_entry = entry; diff --git a/src/ephy-nautilus-view.c b/src/ephy-nautilus-view.c index f7a0ff867..8af22ba66 100644 --- a/src/ephy-nautilus-view.c +++ b/src/ephy-nautilus-view.c @@ -389,8 +389,7 @@ gnv_embed_location_cb (EphyEmbed *embed, EphyNautilusView *view) p = view->priv; g_return_if_fail (view->priv->embed == embed); - ephy_embed_get_location (embed, TRUE, FALSE, - &new_uri); + ephy_embed_get_location (embed, TRUE, &new_uri); g_return_if_fail (new_uri != NULL); @@ -549,7 +548,7 @@ gnv_popup_cmd_frame_in_new_window (BonoboUIComponent *uic, info = ephy_embed_popup_get_event (popup); - ephy_embed_get_location (view->priv->embed, FALSE, FALSE, &location); + ephy_embed_get_location (view->priv->embed, FALSE, &location); nautilus_view_open_location_force_new_window (NAUTILUS_VIEW (view), location, NULL); diff --git a/src/ephy-shell.c b/src/ephy-shell.c index eeacdf819..d408a7652 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -304,7 +304,7 @@ build_homepage_url (EphyShell *gs, if (previous_embed != NULL) { ephy_embed_get_location (previous_embed, - TRUE, TRUE, + TRUE, &result); } diff --git a/src/ephy-tab.c b/src/ephy-tab.c index b1fe71fb6..b66beb2e7 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -461,7 +461,7 @@ static void ephy_tab_location_cb (EphyEmbed *embed, EphyTab *tab) { if (tab->priv->location) g_free (tab->priv->location); - ephy_embed_get_location (embed, TRUE, FALSE, + ephy_embed_get_location (embed, TRUE, &tab->priv->location); if (tab->priv->is_active) diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index 5e077972a..021126424 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -397,7 +397,7 @@ pdm_dialog_cookie_add (PdmActionInfo *info, gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, - COL_COOKIES_HOST, cinfo->base.domain, + COL_COOKIES_HOST, cinfo->domain, COL_COOKIES_NAME, cinfo->name, COL_COOKIES_DATA, cinfo, -1); diff --git a/src/popup-commands.c b/src/popup-commands.c index bf187d981..b7c39ca40 100644 --- a/src/popup-commands.c +++ b/src/popup-commands.c @@ -173,7 +173,7 @@ void popup_cmd_frame_in_new_tab (BonoboUIComponent *uic, embed = ephy_window_get_active_embed (window); - ephy_embed_get_location (embed, FALSE, FALSE, &location); + ephy_embed_get_location (embed, FALSE, &location); ephy_shell_new_tab (ephy_shell, window, tab, location, @@ -198,7 +198,7 @@ void popup_cmd_frame_in_new_window (BonoboUIComponent *uic, embed = ephy_window_get_active_embed (window); - ephy_embed_get_location (embed, FALSE, FALSE, &location); + ephy_embed_get_location (embed, FALSE, &location); ephy_shell_new_tab (ephy_shell, NULL, tab, location, |