Renamed gswe_moment_get_aspects() to gswe_moment_get_all_aspects()

Just to make the API to seem consistent.
This commit is contained in:
Gergely Polonkai 2013-09-11 00:17:23 +02:00
parent a9fcd9afa4
commit da2aa0c5f0
2 changed files with 3 additions and 3 deletions

View File

@ -710,7 +710,7 @@ gswe_moment_calculate_aspects(GsweMoment *moment)
}
/**
* gswe_moment_get_aspects:
* gswe_moment_get_all_aspects:
* @moment: the GsweMoment to operate on
*
* Gets all planetary aspects between the planets added by
@ -721,7 +721,7 @@ gswe_moment_calculate_aspects(GsweMoment *moment)
* to @moment, and should not be freed or modified.
*/
GList *
gswe_moment_get_aspects(GsweMoment *moment)
gswe_moment_get_all_aspects(GsweMoment *moment)
{
gswe_moment_calculate_aspects(moment);

View File

@ -162,7 +162,7 @@ GswePlanetData *gswe_moment_get_planet(GsweMoment *moment, GswePlanet planet);
guint gswe_moment_get_element_points(GsweMoment *moment, GsweElement element);
guint gswe_moment_get_quality_points(GsweMoment *moment, GsweQuality quality);
GsweMoonPhaseData *gswe_moment_get_moon_phase(GsweMoment *moment);
GList *gswe_moment_get_aspects(GsweMoment *moment);
GList *gswe_moment_get_all_aspects(GsweMoment *moment);
GList *gswe_moment_get_planet_aspects(GsweMoment *moment, GswePlanet planet);
GList *gswe_moment_get_all_mirrorpoints(GsweMoment *moment);
GList *gswe_moment_get_all_planet_mirrorpoints(GsweMoment *moment, GswePlanet planet);