aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-string-parser.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2010-04-13 22:25:57 +0800
committerXavier Claessens <xclaesse@gmail.com>2010-04-19 17:55:58 +0800
commitdb806e6906469a1db633090b4a02298e4ebb4afd (patch)
tree18cfab67927086f4c370918c31ac37c2a257b520 /libempathy-gtk/empathy-string-parser.c
parentcd798ab3c9d123c271245dea28682e3b85d3f9de (diff)
downloadgsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar.gz
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar.bz2
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar.lz
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar.xz
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.tar.zst
gsoc2013-empathy-db806e6906469a1db633090b4a02298e4ebb4afd.zip
Remove check for GTK version now that we depend on 2.20
Fixes bug #612185
Diffstat (limited to 'libempathy-gtk/empathy-string-parser.c')
-rw-r--r--libempathy-gtk/empathy-string-parser.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-string-parser.c b/libempathy-gtk/empathy-string-parser.c
index a661cd477..5c3fb1972 100644
--- a/libempathy-gtk/empathy-string-parser.c
+++ b/libempathy-gtk/empathy-string-parser.c
@@ -203,14 +203,6 @@ empathy_add_link_markup (const gchar *text)
g_return_val_if_fail (text != NULL, NULL);
- /* GtkLabel with links could make infinite loop because of
- * GNOME bug #612066. It is fixed in GTK >= 2.18.8 and GTK >= 2.19.7.
- * FIXME: Remove this check once we have an hard dep on GTK 2.20 */
- if (gtk_check_version (2, 18, 8) != NULL ||
- (gtk_minor_version == 19 && gtk_micro_version < 7)) {
- return g_markup_escape_text (text, -1);
- }
-
string = g_string_sized_new (strlen (text));
empathy_string_parser_substr (text, -1, parsers, string);