aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-03-14 04:43:53 +0800
committerDan Winship <danw@src.gnome.org>2001-03-14 04:43:53 +0800
commit2743780dc05befab2e33358868546e461df04ea1 (patch)
tree4c4930e12daa65d01c06dbd406af2e65fb97daf8
parentae7e62bf85724903f8acaf91809cb9624a6fefc1 (diff)
downloadgsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar.gz
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar.bz2
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar.lz
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar.xz
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.tar.zst
gsoc2013-evolution-2743780dc05befab2e33358868546e461df04ea1.zip
Rename this from g_unichar_to_utf8 so that it doesn't conflict with the
* gal/widgets/e-unicode.c (e_unichar_to_utf8): Rename this from g_unichar_to_utf8 so that it doesn't conflict with the function of that name exported by gnome-print (and so that it's consistent with all of the other functions in the file). svn path=/trunk/; revision=8679
-rw-r--r--widgets/misc/e-unicode.c16
-rw-r--r--widgets/misc/e-unicode.h2
2 files changed, 9 insertions, 9 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c
index 13a700489f..37a56471c9 100644
--- a/widgets/misc/e-unicode.c
+++ b/widgets/misc/e-unicode.c
@@ -196,7 +196,7 @@ e_utf8_from_gtk_event_key (GtkWidget *widget, guint keyval, const gchar *string)
utf = g_new (gchar, 7);
- unilen = g_unichar_to_utf8 (unival, utf);
+ unilen = e_unichar_to_utf8 (unival, utf);
utf[unilen] = '\0';
}
@@ -232,7 +232,7 @@ e_utf8_from_gtk_string_sized (GtkWidget *widget, const gchar *string, gint bytes
ib = string;
new = ob = g_new (unsigned char, bytes * 6 + 1);
for (i = 0; i < (bytes - 1); i += 2) {
- ob += g_unichar_to_utf8 (ib[i] * 256 + ib[i + 1], ob);
+ ob += e_unichar_to_utf8 (ib[i] * 256 + ib[i + 1], ob);
}
*ob = '\0';
return new;
@@ -242,7 +242,7 @@ e_utf8_from_gtk_string_sized (GtkWidget *widget, const gchar *string, gint bytes
ib = (char *) string;
new = ob = g_new (unsigned char, bytes * 2 + 1);
for (i = 0; i < (bytes); i ++) {
- ob += g_unichar_to_utf8 (ib[i], ob);
+ ob += e_unichar_to_utf8 (ib[i], ob);
}
*ob = '\0';
return new;
@@ -376,7 +376,7 @@ e_utf8_from_locale_string_sized (const gchar *string, gint bytes)
ib = (char *) string;
new = ob = g_new (unsigned char, bytes * 2 + 1);
for (i = 0; i < (bytes); i ++) {
- ob += g_unichar_to_utf8 (ib[i], ob);
+ ob += e_unichar_to_utf8 (ib[i], ob);
}
*ob = '\0';
return new;
@@ -628,11 +628,11 @@ e_utf8_xml1_decode (const gchar *text)
/* Valid \U+XXXX\ sequence */
unsigned int unival;
unival = strtol (c + s + 3, NULL, 16);
- d += g_unichar_to_utf8 (unival, d);
+ d += e_unichar_to_utf8 (unival, d);
s += 8;
} else if (c[s] > 127) {
/* fixme: We assume iso-8859-1 currently */
- d += g_unichar_to_utf8 (c[s], d);
+ d += e_unichar_to_utf8 (c[s], d);
s += 1;
} else {
*d++ = c[s++];
@@ -680,7 +680,7 @@ e_utf8_xml1_encode (const gchar *text)
}
/**
- * g_unichar_to_utf8:
+ * e_unichar_to_utf8:
* @c: a ISO10646 character code
* @outbuf: output buffer, must have at least 6 bytes of space.
* If %NULL, the length will be computed and returned
@@ -692,7 +692,7 @@ e_utf8_xml1_encode (const gchar *text)
**/
gint
-g_unichar_to_utf8 (gint c, gchar *outbuf)
+e_unichar_to_utf8 (gint c, gchar *outbuf)
{
size_t len = 0;
int first;
diff --git a/widgets/misc/e-unicode.h b/widgets/misc/e-unicode.h
index 8f0c8b646d..14569ced7f 100644
--- a/widgets/misc/e-unicode.h
+++ b/widgets/misc/e-unicode.h
@@ -76,7 +76,7 @@ gint e_utf8_gtk_clist_append (GtkCList *clist, gchar *text[]);
gchar * e_utf8_xml1_decode (const gchar *text);
gchar * e_utf8_xml1_encode (const gchar *text);
-gint g_unichar_to_utf8 (gint c, gchar *outbuf);
+gint e_unichar_to_utf8 (gint c, gchar *outbuf);
guint32 gdk_keyval_to_unicode (guint keysym);
END_GNOME_DECLS