Renamed function gswe_moment_get_planets() to gswe_moment_get_all_planets()

This commit is contained in:
2013-09-16 14:19:39 +02:00
parent f76341930c
commit c8753f49be
2 changed files with 3 additions and 3 deletions

View File

@@ -705,7 +705,7 @@ gswe_moment_calculate_all_planets(GsweMoment *moment)
}
/**
* gswe_moment_get_planets:
* gswe_moment_get_all_planets:
* @moment: The GsweMoment to operate on
*
* Get all the planets added to @moment.
@@ -713,7 +713,7 @@ gswe_moment_calculate_all_planets(GsweMoment *moment)
* Returns: (element-type GswePlanetData) (transfer none): A #GList of #GswePlanetData.
*/
GList *
gswe_moment_get_planets(GsweMoment *moment)
gswe_moment_get_all_planets(GsweMoment *moment)
{
return moment->priv->planet_list;
}