summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Kovalenko <iikovalenko@luxoft.com>2017-10-20 17:09:20 +0300
committerValerii <vmalkov@luxoft.com>2018-01-26 15:17:35 +0200
commit9f0134eb84735441217764d52ccd316730ba6908 (patch)
tree7fcd63a4ea68fa7361dddebd596dcb58bf52daf8
parent4bd0d237bf5ff7ec53d5e4ee65175ad8cb2c066a (diff)
downloadsdl_core-9f0134eb84735441217764d52ccd316730ba6908.tar.gz
fix - OnWayPointChange notification doesn't come on last point
fix of MOBILE_API, HMI_API- no OnWayPointsChange on last point
-rw-r--r--src/components/interfaces/HMI_API.xml2
-rw-r--r--src/components/interfaces/MOBILE_API.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/interfaces/HMI_API.xml b/src/components/interfaces/HMI_API.xml
index ab3933fc0f..6414090a50 100644
--- a/src/components/interfaces/HMI_API.xml
+++ b/src/components/interfaces/HMI_API.xml
@@ -4069,7 +4069,7 @@
</function>
<function name="OnWayPointChange" functionID="OnWayPointChangeID" messagetype="notification">
<description>Notification which provides the entire LocationDetails when there is a change to any waypoints or destination.</description>
- <param name="wayPoints" type="Common.LocationDetails" mandatory="true" array="true" minsize="1" maxsize="10">
+ <param name="wayPoints" type="Common.LocationDetails" mandatory="true" array="true" minsize="0" maxsize="10">
<description>See LocationDetails</description>
</param>
</function>
diff --git a/src/components/interfaces/MOBILE_API.xml b/src/components/interfaces/MOBILE_API.xml
index a1c64aecda..96ef12f752 100644
--- a/src/components/interfaces/MOBILE_API.xml
+++ b/src/components/interfaces/MOBILE_API.xml
@@ -5924,7 +5924,7 @@
<function name="OnWayPointChange" functionID="OnWayPointChangeID" messagetype="notification">
<description>Notification which provides the entire LocationDetails when there is a change to any waypoints or destination.</description>
- <param name="wayPoints" type="LocationDetails" mandatory="true" array="true" minsize="1" maxsize="10">
+ <param name="wayPoints" type="LocationDetails" mandatory="true" array="true" minsize="0" maxsize="10">
<description>See LocationDetails</description>
</param>
</function>