diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-22 23:46:20 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-22 23:46:20 +0800 |
commit | 3e6b83577e82d3d1795ba0fce874abebba44ea22 (patch) | |
tree | f29b719a744296fb8dacc450d363b12ec1fde2eb | |
parent | 209b7548bc44dc587b37e64bc412d68bc400bdda (diff) | |
download | gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar.gz gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar.bz2 gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar.lz gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar.xz gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.tar.zst gsoc2013-evolution-3e6b83577e82d3d1795ba0fce874abebba44ea22.zip |
Document the fact that this takes two locale charset strings and one UTF8
* e-request.c (e_request_string): Document the fact that this
takes two locale charset strings and one UTF8 string and returns a
UTF8 string. (Huh.)
svn path=/trunk/; revision=16226
-rw-r--r-- | e-util/ChangeLog | 6 | ||||
-rw-r--r-- | e-util/e-request.c | 14 |
2 files changed, 13 insertions, 7 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index b50d12c6dd..4a8f529318 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2002-03-22 Dan Winship <danw@ximian.com> + + * e-request.c (e_request_string): Document the fact that this + takes two locale charset strings and one UTF8 string and returns a + UTF8 string. (Huh.) + 2002-03-04 Jeffrey Stedfast <fejj@ximian.com> * e-mktemp.c: #include <string.h> for strcmp. diff --git a/e-util/e-request.c b/e-util/e-request.c index 22ba53f21b..a54b46bf9d 100644 --- a/e-util/e-request.c +++ b/e-util/e-request.c @@ -36,15 +36,15 @@ /** * e_request_string: - * @parent: - * @title: - * @prompt: - * @default: + * @parent: parent window, or %NULL + * @title: the dialog title (in the locale character set) + * @prompt: the prompt (in the locale character set) + * @default: default value (in UTF8) * - * Requst a string to the user. + * Request a string from the user. * - * Return value: NULL if the user cancelled the dialog, the inserted string - * otherwise. The string must be freed by the caller. + * Return value: %NULL if the user cancelled the dialog, the inserted + * string (in UTF8) otherwise. The string must be freed by the caller. **/ char * e_request_string (GtkWindow *parent, |