summaryrefslogtreecommitdiff
path: root/misc/xiphos/files/patch-src::gnome2::editor_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/xiphos/files/patch-src::gnome2::editor_menu.c')
-rw-r--r--misc/xiphos/files/patch-src::gnome2::editor_menu.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/misc/xiphos/files/patch-src::gnome2::editor_menu.c b/misc/xiphos/files/patch-src::gnome2::editor_menu.c
deleted file mode 100644
index 5ca9a49a6be1..000000000000
--- a/misc/xiphos/files/patch-src::gnome2::editor_menu.c
+++ /dev/null
@@ -1,49 +0,0 @@
---- src/gnome2/editor_menu.c.orig Fri Apr 2 17:28:07 2004
-+++ src/gnome2/editor_menu.c Mon Feb 14 15:08:42 2005
-@@ -29,11 +29,11 @@
- #include <gtkhtml/htmlform.h>
- #include <gtkhtml/htmlenums.h>
- #include <gtkhtml/htmlsettings.h>
- #include <gtkhtml/htmlcolor.h>
- #include <gtkhtml/htmlcolorset.h>
--#include <gtkhtml/htmllinktext.h>
-+//#include <gtkhtml/htmllinktext.h>
- #include <gtkhtml/htmlengine-edit.h>
- #include <gtkhtml/htmlengine-edit-fontstyle.h>
- #include <gtkhtml/htmlengine-edit-cut-and-paste.h>
- #include <gtkhtml/htmlselection.h>
- #include <gtkhtml/htmlengine-search.h>
-@@ -491,17 +491,33 @@
- target = strchr(url, '#');
- url_copy =
- target ? g_strndup(url,
- target - url) : g_strdup(url);
- new_link =
-+ html_text_new(text,
-+ GTK_HTML_FONT_STYLE_DEFAULT,
-+ html_colorset_get_color(e->
-+ settings->
-+ color_set,
-+ HTMLLinkColor));
-+ new_link =
-+ html_object_set_link(new_link,
-+ html_colorset_get_color(e->
-+ settings->
-+ color_set,
-+ HTMLLinkColor),
-+ url_copy, target);
-+/*
-+ new_link =
- html_link_text_new(text,
- GTK_HTML_FONT_STYLE_DEFAULT,
- html_colorset_get_color(e->
- settings->
- color_set,
- HTMLLinkColor),
- url_copy, target);
-+*/
- html_engine_paste_object(e, new_link,
- g_utf8_strlen(text, -1));
- g_free(url_copy);
- }
- }