diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 4186952cec..2b5326e1a1 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2004-04-23 Matthias Clasen + + * gdk/tmpl/properties.sgml: Document the only_if_exists argument + to gdk_atom_intern() as ignored. + 2004-04-21 Matthias Clasen * gtk/gtk-sections.txt: Add GtkFileChooserEmbed to a diff --git a/docs/reference/gdk/tmpl/properties.sgml b/docs/reference/gdk/tmpl/properties.sgml index 9aac1ff75e..7cf46bd1af 100644 --- a/docs/reference/gdk/tmpl/properties.sgml +++ b/docs/reference/gdk/tmpl/properties.sgml @@ -225,11 +225,11 @@ Finds or creates an atom corresponding to a given string. @atom_name: a string. -@only_if_exists: if %TRUE, do not create a new atom, but - just return the atom if it already exists. -@Returns: the atom corresponding to @atom_name, or, if - @only_if_exists is %TRUE, and an atom does not - already exists for the string, %GDK_NONE. +@only_if_exists: if %TRUE, GDK is allowed to not create a new atom, but + just return %GDK_NONE if the requested atom doesn't already + exists. Currently, the flag is ignored, since checking the + existance of an atom is as expensive as creating it. +@Returns: the atom corresponding to @atom_name.