summaryrefslogtreecommitdiff
path: root/core/SystemStatus.cpp
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2018-05-30 17:44:25 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2018-06-06 15:35:57 -0700
commitdd85ce83f35bd4b54bf61e2df0b21555ee9bf691 (patch)
treebb7864363d097a09fd4359e03c97b33246cc8a5c /core/SystemStatus.cpp
parentdab99a6cb5df2a5af29434af0e5b70aa257efdb8 (diff)
downloadgps-dd85ce83f35bd4b54bf61e2df0b21555ee9bf691.tar.gz
DataItem changes to fix incorrect NetworkInfo connect handling
NetworkInfoBaase added a type to allTypes protected method so that derived class can use it. Also, the SystemStatusNetworkInfo no longer compares names in its equal(), as it only is going to return false when comparing GnssLocationProvider NetworkInfo and OsAgent NetworkInfo. Change-Id: I363f27f4ed7be4aab2a4c4c033d5dff69d0a47d9 CRs-Fixed: 2251564
Diffstat (limited to 'core/SystemStatus.cpp')
-rw-r--r--core/SystemStatus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/SystemStatus.cpp b/core/SystemStatus.cpp
index 5d5c4b0..b3260bd 100644
--- a/core/SystemStatus.cpp
+++ b/core/SystemStatus.cpp
@@ -1680,7 +1680,7 @@ bool SystemStatus::setDefaultGnssEngineStates(void)
bool SystemStatus::eventConnectionStatus(bool connected, int8_t type)
{
// send networkinof dataitem to systemstatus observer clients
- SystemStatusNetworkInfo s(type, "", "", false, connected, false);
+ SystemStatusNetworkInfo s(type, "", "", connected);
mSysStatusObsvr.notify({&s});
return true;