[android] fix: Parameter renamed.

This commit is contained in:
Alexander Marchuk 2016-01-06 15:24:44 +03:00 committed by Constantin Shalnev
parent 9a46e0faa3
commit b2241bce1e
2 changed files with 4 additions and 4 deletions

View file

@ -1330,9 +1330,9 @@ extern "C"
}
JNIEXPORT jboolean JNICALL
Java_com_mapswithme_maps_Framework_nativeIsDayTime(JNIEnv * env, jclass thiz, jlong currentTimeUtc, jdouble lat, jdouble lon)
Java_com_mapswithme_maps_Framework_nativeIsDayTime(JNIEnv * env, jclass thiz, jlong utcTimeSeconds, jdouble lat, jdouble lon)
{
DayTimeType const dt = GetDayTime(static_cast<time_t>(currentTimeUtc), lat, lon);
DayTimeType const dt = GetDayTime(static_cast<time_t>(utcTimeSeconds), lat, lon);
return (dt == DayTimeType::Day || dt == DayTimeType::PolarDay);
}

View file

@ -185,12 +185,12 @@ public class Framework
/**
* Determines if currently is day or night at the given location. Used to switch day/night styles.
* @param currentTimeUtc current Unix time (returned by {@link System#currentTimeMillis()} divided by 1000).
* @param utcTimeSeconds Unix time in seconds.
* @param lat latitude of the current location.
* @param lon longitude of the current location.
* @return {@code true} if it is day now or {@code false} otherwise.
*/
public static native boolean nativeIsDayTime(long currentTimeUtc, double lat, double lon);
public static native boolean nativeIsDayTime(long utcTimeSeconds, double lat, double lon);
public native static void nativeGet3dMode(Params3dMode result);