rename map_projection_inited to map_projection_initialized

This commit is contained in:
Thomas Gubler
2014-04-24 17:16:20 +02:00
parent b249d04e52
commit 4e30784d6c
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -57,7 +57,7 @@
static struct map_projection_reference_s mp_ref;
__EXPORT bool map_projection_inited()
__EXPORT bool map_projection_initialized()
{
return mp_ref.init_done;
}
@@ -81,7 +81,7 @@ __EXPORT void map_projection_init(double lat_0, double lon_0) //lat_0, lon_0 are
__EXPORT bool map_projection_project(double lat, double lon, float *x, float *y)
{
if (!map_projection_inited()) {
if (!map_projection_initialized()) {
return false;
}
@@ -103,7 +103,7 @@ __EXPORT bool map_projection_project(double lat, double lon, float *x, float *y)
__EXPORT bool map_projection_reproject(float x, float y, double *lat, double *lon)
{
if (!map_projection_inited()) {
if (!map_projection_initialized()) {
return false;
}
+1 -1
View File
@@ -79,7 +79,7 @@ struct map_projection_reference_s {
* Initializes the map transformation.
* @return true if map_projection_init was called before, false else
*/
__EXPORT bool map_projection_inited();
__EXPORT bool map_projection_initialized();
/**