summaryrefslogtreecommitdiff
path: root/core/LocApiBase.cpp
diff options
context:
space:
mode:
authorqctecmdr <qctecmdr@localhost>2020-12-25 17:40:17 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2020-12-25 17:40:17 -0800
commit33ec7c1010a18d011fd2d972a7866e745d56935e (patch)
treead6b404ec66c202be13f99fa1850dc73fb619972 /core/LocApiBase.cpp
parent93fa7d6ec8ec3afffd9584a11e67e500cd65cb40 (diff)
parent8c4a0ec3c118b2c9d6670d6b7fa783f0bbc99b69 (diff)
Merge "SUPL-2.0-con-034-1/2 test case fails"
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r--core/LocApiBase.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp
index 50d7369..cdbb382 100644
--- a/core/LocApiBase.cpp
+++ b/core/LocApiBase.cpp
@@ -521,10 +521,14 @@ void LocApiBase::releaseATL(int connHandle)
TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->releaseATL(connHandle));
}
-void LocApiBase::requestNiNotify(GnssNiNotification &notify, const void* data)
+void LocApiBase::requestNiNotify(GnssNiNotification &notify, const void* data,
+ const LocInEmergency emergencyState)
{
// loop through adapters, and deliver to the first handling adapter.
- TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->requestNiNotifyEvent(notify, data));
+ TO_1ST_HANDLING_LOCADAPTERS(
+ mLocAdapters[i]->requestNiNotifyEvent(notify,
+ data,
+ emergencyState));
}
void* LocApiBase :: getSibling()