diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-12-09 05:09:31 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-12-09 05:09:31 +0800 |
commit | 10cab4c208582f6d86361a2e6f679fcf8473f0bd (patch) | |
tree | 776d25183ad79ca01295d8127cb063d65788b98f /e-util | |
parent | 4e47d1142a431f2c64437a7e47fc892a43c17d16 (diff) | |
download | gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar.gz gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar.bz2 gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar.lz gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar.xz gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.tar.zst gsoc2013-evolution-10cab4c208582f6d86361a2e6f679fcf8473f0bd.zip |
Updated documentation comment.
2000-12-08 Federico Mena Quintero <federico@helixcode.com>
* e-dialog-widgets.c (e_dialog_editable_get): Updated
documentation comment.
svn path=/trunk/; revision=6869
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-dialog-widgets.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 5bbe2ed607..884c239624 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2000-12-08 Federico Mena Quintero <federico@helixcode.com> + + * e-dialog-widgets.c (e_dialog_editable_get): Updated + documentation comment. + 2000-12-04 Ettore Perazzoli <ettore@helixcode.com> * e-corba-utils.h: New. diff --git a/e-util/e-dialog-widgets.c b/e-util/e-dialog-widgets.c index 2a564cbc19..e168c79d59 100644 --- a/e-util/e-dialog-widgets.c +++ b/e-util/e-dialog-widgets.c @@ -363,7 +363,9 @@ e_dialog_editable_set (GtkWidget *widget, const char *value) * * Queries the string value inside a #GtkEditable-derived widget. * - * Return value: String value. + * Return value: String value. You should free it when you are done with it. + * This function can return NULL if the string could not be converted from + * GTK+'s encoding into UTF8. **/ char * e_dialog_editable_get (GtkWidget *widget) |