summaryrefslogtreecommitdiffstats
path: root/parameter/InstanceConfigurableElement.cpp
diff options
context:
space:
mode:
authorFrancois Gaffie <francois.gaffie@intel.com>2014-04-07 13:46:05 +0200
committerMattijs Korpershoek <mattijsx.korpershoek@intel.com>2014-06-24 11:51:35 +0200
commit8ab7293fc32d078f558985b938fa5c71c2b0404b (patch)
tree4123046de6b599d346e339d5c6126744d63a499e /parameter/InstanceConfigurableElement.cpp
parent01c7495e66caea59165316bc025a69cce1383311 (diff)
downloadexternal_parameter-framework-8ab7293fc32d078f558985b938fa5c71c2b0404b.zip
external_parameter-framework-8ab7293fc32d078f558985b938fa5c71c2b0404b.tar.gz
external_parameter-framework-8ab7293fc32d078f558985b938fa5c71c2b0404b.tar.bz2
Restore autosync of string parameter
BZ: 183857 Sync for String parameter accessed from parameter handle API does not work. This patch allows synchronisation for string parameter accessed from parameter handle APIs. Change-Id: If738402f4c0fcb0bb51bd2515e46f3ac36a361dd Signed-off-by: Francois Gaffie <francois.gaffie@intel.com> Signed-off-by: Mattijs Korpershoek <mattijsx.korpershoek@intel.com>
Diffstat (limited to 'parameter/InstanceConfigurableElement.cpp')
-rw-r--r--parameter/InstanceConfigurableElement.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/parameter/InstanceConfigurableElement.cpp b/parameter/InstanceConfigurableElement.cpp
index d0e1971..003a606 100644
--- a/parameter/InstanceConfigurableElement.cpp
+++ b/parameter/InstanceConfigurableElement.cpp
@@ -175,9 +175,14 @@ void CInstanceConfigurableElement::fillSyncerSetFromDescendant(CSyncerSet& synce
}
}
-// Sync
bool CInstanceConfigurableElement::sync(CParameterAccessContext& parameterAccessContext) const
{
+ if (!parameterAccessContext.getAutoSync()) {
+
+ // AutoSync is disabled, do not perform the sync.
+ // This is not an error, but the expected behavior so return true anyway.
+ return true;
+ }
ISyncer* pSyncer = getSyncer();
if (!pSyncer) {
@@ -211,4 +216,3 @@ bool CInstanceConfigurableElement::checkPathExhausted(CPathNavigator& pathNaviga
}
return true;
}
-