diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-10-25 00:01:15 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-10-25 00:01:15 +0000 |
commit | 1a4c94b90b386d356eec81750bb5702abfb8a223 (patch) | |
tree | 842e5b76bd1d3be3e1618cb09d0092473d83695a /gdk/win32 | |
parent | f60781222651127db4c08bde29f0d58beefc673d (diff) | |
download | gtk+-1a4c94b90b386d356eec81750bb5702abfb8a223.tar.gz |
Fix doc comment.
* gdk/x11/gdkcursor-x11.c: Fix doc comment.
* gdk/gdkdnd.c: Add missing includes.
Diffstat (limited to 'gdk/win32')
-rw-r--r-- | gdk/win32/gdkselection-win32.c | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/gdk/win32/gdkselection-win32.c b/gdk/win32/gdkselection-win32.c index 7cc0b8b6a1..98f1a8db0b 100644 --- a/gdk/win32/gdkselection-win32.c +++ b/gdk/win32/gdkselection-win32.c @@ -704,22 +704,6 @@ make_list (const gchar *text, return n_strings; } -/** - * gdk_text_property_to_utf8_list_for_display: - * @display: currently ignored - * @encoding: an atom representing the encoding of the text - * @format: the format of the property - * @text: the text to convert - * @length: the length of @text, in bytes - * @list: location to store the list of strings or %NULL. The - * list should be freed with g_strfreev(). - * - * Converts a text property in the giving encoding to - * a list of UTF-8 strings. - * - * Return value: the number of strings in the resulting - * list. - **/ gint gdk_text_property_to_utf8_list_for_display (GdkDisplay *display, GdkAtom encoding, @@ -841,40 +825,12 @@ sanitize_utf8 (const gchar *src) return g_string_free (result, FALSE); } -/** - * gdk_utf8_to_string_target: - * @str: a UTF-8 string - * - * Converts an UTF-8 string into the best possible representation - * as a STRING. The representation of characters not in STRING - * is not specified; it may be as pseudo-escape sequences - * \x{ABCD}, or it may be in some other form of approximation. - * - * Return value: the newly allocated string, or %NULL if the - * conversion failed. (It should not fail for - * any properly formed UTF-8 string.) - **/ gchar * gdk_utf8_to_string_target (const gchar *str) { return sanitize_utf8 (str); } -/** - * gdk_utf8_to_compound_text_for_display : - * @display: currently not used on win32 - * @str: a UTF-8 string - * @encoding: location to store resulting encoding - * @format: location to store format of the result - * @ctext: location to store the data of the result - * @length: location to store the length of the data - * stored in @ctext - * - * Converts from UTF-8 to compound text. - * - * Return value: %TRUE if the conversion succeeded, otherwise - * %FALSE. - **/ gboolean gdk_utf8_to_compound_text_for_display (GdkDisplay *display, const gchar *str, |