Fix BCountry::GetName() method that was showing in BVolume::GetName()

This commit is contained in:
John Scipione 2013-02-21 20:16:34 -05:00
parent 9d5f5318a5
commit bcd9244e4a

View File

@ -64,11 +64,16 @@
/*!
\fn bool BCountry::GetName(BString& name) const
\brief Get the name of the country.
\fn status_t BCountry::GetName(BString& name,
const BLanguage* displayLanguage = NULL) const
\brief Writes the country's name into the supplied BString.
Fills in the name parameter with the name of the country in the
language set by the user's locale.
\param name A reference to a BString to write the country name to.
\param displayLanguage The language to use when writing the name. Can be
\c NULL to use the language set by the user's locale.
\returns A status code, B_OK if everything went fine, or an error code
otherwise.
*/