From: Matthias Clasen Date: Sat, 18 Dec 2004 02:06:58 +0000 (+0000) Subject: Clarify g_get_prgname docs. (#161480, Danny Milo) X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=f822229feae9136db4f1f26624c8e87623701c89;p=dana%2Fcg-glib.git Clarify g_get_prgname docs. (#161480, Danny Milo) 2004-12-17 Matthias Clasen * glib/tmpl/misc_utils.sgml: Clarify g_get_prgname docs. (#161480, Danny Milo) --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 8d55d6b3..9bc9dbc0 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2004-12-17 Matthias Clasen + + * glib/tmpl/misc_utils.sgml: Clarify g_get_prgname docs. + (#161480, Danny Milo) + 2004-12-16 Matthias Clasen * glib/tmpl/version.sgml: Improve wording. (#161484, diff --git a/docs/reference/glib/tmpl/misc_utils.sgml b/docs/reference/glib/tmpl/misc_utils.sgml index 9511f09a..4c757541 100644 --- a/docs/reference/glib/tmpl/misc_utils.sgml +++ b/docs/reference/glib/tmpl/misc_utils.sgml @@ -32,19 +32,20 @@ These are portable utility functions. -Gets the name of the program. This name should NOT be localized, +Gets the name of the program. This name should not be localized, contrast with g_get_application_name(). (If you are using GDK or GTK+ the program name is set in gdk_init(), which is called by gtk_init(). The program name is found by taking the last component of argv[0].) -@Returns: the name of the program. +@Returns: the name of the program. + The returned string belongs to GLib and must not be modified or freed. -Sets the name of the program. This name should NOT be localized, +Sets the name of the program. This name should not be localized, contrast with g_set_application_name(). Note that for thread-safety reasons this function can only be called once.