summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-11-30 02:02:18 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-11-30 02:02:18 +0800
commitb282e7a9c43f51082589e741fe150a992c10c38c (patch)
treec3782cbf823d1cfd25033e3f329d8e9f93c64856
parentff9b3d1c1a3399fe7c6719310b9f5c78755a98e4 (diff)
downloadmarcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar.gz
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar.bz2
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar.lz
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar.xz
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.tar.zst
marcuscom-ports-b282e7a9c43f51082589e741fe150a992c10c38c.zip
Sync with current Nautilus API.
Obtained from: Epiphany CVS git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1382 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--www/epiphany/files/patch-src_ephy-nautilus-view.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/www/epiphany/files/patch-src_ephy-nautilus-view.c b/www/epiphany/files/patch-src_ephy-nautilus-view.c
new file mode 100644
index 000000000..9273c5b65
--- /dev/null
+++ b/www/epiphany/files/patch-src_ephy-nautilus-view.c
@@ -0,0 +1,51 @@
+--- src/ephy-nautilus-view.c.orig Sat Nov 29 13:00:19 2003
++++ src/ephy-nautilus-view.c Sat Nov 29 13:02:41 2003
+@@ -312,8 +312,8 @@
+
+ g_return_val_if_fail (url, FALSE);
+
+- nautilus_view_open_location_force_new_window (NAUTILUS_VIEW (view),
+- url, NULL);
++ nautilus_view_open_location (NAUTILUS_VIEW (view), url
++ Nautilus_ViewFrame_OPEN_IN_NAVIGATION, 0, NULL);
+ }
+
+ return FALSE;
+@@ -461,8 +461,8 @@
+
+ ephy_embed_event_get_property (info, "link", &value);
+
+- nautilus_view_open_location_force_new_window (NAUTILUS_VIEW (view),
+- g_value_get_string (value), NULL);
++ nautilus_view_open_location (NAUTILUS_VIEW (view), g_value_get_string (value),
++ Nautilus_ViewFrame_OPEN_IN_NAVIGATION, 0, NULL);
+ }
+
+ static void
+@@ -480,8 +480,10 @@
+
+ ephy_embed_event_get_property (info, "image", &value);
+
+- nautilus_view_open_location_force_new_window (NAUTILUS_VIEW (view),
+- g_value_get_string (value), NULL);
++ nautilus_view_open_location (NAUTILUS_VIEW (view),
++ g_value_get_string (value),
++ Nautilus_ViewFrame_OPEN_IN_NAVIGATION,
++ 0, NULL);
+ }
+
+ static void
+@@ -499,8 +501,11 @@
+
+ ephy_embed_get_location (view->priv->embed, FALSE, &location);
+
+- nautilus_view_open_location_force_new_window (NAUTILUS_VIEW (view),
+- location, NULL);
++ nautilus_view_open_location (NAUTILUS_VIEW (view),
++ location,
++ Nautilus_ViewFrame_OPEN_IN_NAVIGATION,
++ 0, NULL);
++
+ g_free (location);
+ }
+