From 36f8446032cb3376116317a82b048bf7f7f3b659 Mon Sep 17 00:00:00 2001 From: Dante Russo Date: Fri, 31 Mar 2017 18:00:01 -0700 Subject: [PATCH] Fix NI Request Event GnssAdatper::requestNiNotifyEvent function is not overriding LocAdatperBase::requestNiNotigyEvent because of slightly different parameters Change-Id: Ib3e6b562c437e47fba2a086d47c887f2efce7637 CRs-fixed: 2027710 --- core/LocAdapterBase.cpp | 2 +- core/LocAdapterBase.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/LocAdapterBase.cpp b/core/LocAdapterBase.cpp index 27132b79..aca59093 100644 --- a/core/LocAdapterBase.cpp +++ b/core/LocAdapterBase.cpp @@ -149,7 +149,7 @@ bool LocAdapterBase:: DEFAULT_IMPL(false) bool LocAdapterBase:: - requestNiNotifyEvent(GnssNiNotification ¬ify, const void* data) + requestNiNotifyEvent(const GnssNiNotification ¬ify, const void* data) DEFAULT_IMPL(false) void LocAdapterBase:: diff --git a/core/LocAdapterBase.h b/core/LocAdapterBase.h index 824a3407..5c471fd5 100644 --- a/core/LocAdapterBase.h +++ b/core/LocAdapterBase.h @@ -147,7 +147,7 @@ public: virtual bool requestSuplES(int connHandle); virtual bool reportDataCallOpened(); virtual bool reportDataCallClosed(); - virtual bool requestNiNotifyEvent(GnssNiNotification ¬ify, const void* data); + virtual bool requestNiNotifyEvent(const GnssNiNotification ¬ify, const void* data); inline virtual bool isInSession() { return false; } ContextBase* getContext() const { return mContext; } virtual void reportGnssMeasurementDataEvent(const GnssMeasurementsNotification& measurementsNotify);