UTF-8-ize a bunch more arrows. If IE6 on XP can render them then they
[obnox/wireshark/wip.git] / gtk / follow_udp.c
index 097c1e62bbd7dac475e607801434d06b1e721ce8..3b2344bb4c1326216aea76a6a89340280e1f7015 100644 (file)
@@ -44,7 +44,7 @@
 #include <gtk/keys.h>
 #include <gtk/main.h>
 #include "gtk/follow_udp.h"
-
+#include "gtk/utf8_entities.h"
 
 static int
 udp_queue_packet_data(void *tapdata, packet_info *pinfo,
@@ -200,25 +200,25 @@ follow_udp_stream_cb(GtkWidget *w, gpointer data _U_)
     
        if(follow_info->client_port == stats.port[0]) {
                server_to_client_string =
-                       g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+                       g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
                                        hostname0, port0,
                                        hostname1, port1,
                                        follow_info->bytes_written[0]);
                
                client_to_server_string =
-                       g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+                       g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
                                        hostname1, port1,
                                        hostname0, port0,
                                        follow_info->bytes_written[1]);
        } else {
                server_to_client_string =
-                       g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+                       g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
                                        hostname1, port1,
                                        hostname0, port0,
                                        follow_info->bytes_written[0]);
                
                client_to_server_string =
-                       g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+                       g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
                                        hostname0, port0,
                                        hostname1, port1,
                                        follow_info->bytes_written[1]);