summaryrefslogtreecommitdiffstats
path: root/parameter
diff options
context:
space:
mode:
authorPavel Chupin <pavel.v.chupin@intel.com>2012-04-24 10:55:48 +0400
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:08 +0100
commit85413ff0f03b6f7759b1ee00f2e11ce2662b2354 (patch)
tree17780caacc185782cd4e01a97f013e217975eb1d /parameter
parent258c6f5ae24de2e96ac0a0a842483bdc60b6b063 (diff)
downloadexternal_parameter-framework-85413ff0f03b6f7759b1ee00f2e11ce2662b2354.zip
external_parameter-framework-85413ff0f03b6f7759b1ee00f2e11ce2662b2354.tar.gz
external_parameter-framework-85413ff0f03b6f7759b1ee00f2e11ce2662b2354.tar.bz2
gcc4.6: Fix incompatible type casts for 4.6 toolchain.
BZ: 33304 Change-Id: I6a13f95b0c5636591f76e7f123c0813608d50c73 Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com> Reviewed-on: http://android.intel.com:8080/45958 Reviewed-by: Lu, Hongjiu <hongjiu.lu@intel.com> Reviewed-by: Beare, Bruce J <bruce.j.beare@intel.com> Reviewed-by: Yin, Fengwei <fengwei.yin@intel.com> Reviewed-by: Li, XiaojingX <xiaojingx.li@intel.com> Tested-by: Li, XiaojingX <xiaojingx.li@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'parameter')
-rw-r--r--parameter/ParameterMgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/parameter/ParameterMgr.cpp b/parameter/ParameterMgr.cpp
index 3b6447a..663dd3c 100644
--- a/parameter/ParameterMgr.cpp
+++ b/parameter/ParameterMgr.cpp
@@ -1513,7 +1513,7 @@ bool CParameterMgr::addConfigurableElementToDomain(const string& strDomain, cons
}
// Convert element
- CConfigurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(pLocatedElement);
+ CConfigurableElement* pConfigurableElement = static_cast<CConfigurableElement*>(pLocatedElement);
// Delegate
return getConfigurableDomains()->addConfigurableElementToDomain(strDomain, pConfigurableElement, _pMainParameterBlackboard, strError);
@@ -1537,7 +1537,7 @@ bool CParameterMgr::removeConfigurableElementFromDomain(const string& strDomain,
}
// Convert element
- CConfigurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(pLocatedElement);
+ CConfigurableElement* pConfigurableElement = static_cast<CConfigurableElement*>(pLocatedElement);
// Delegate
return getConfigurableDomains()->removeConfigurableElementFromDomain(strDomain, pConfigurableElement, strError);
@@ -1561,7 +1561,7 @@ bool CParameterMgr::split(const string& strDomain, const string& strConfigurable
}
// Convert element
- CConfigurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(pLocatedElement);
+ CConfigurableElement* pConfigurableElement = static_cast<CConfigurableElement*>(pLocatedElement);
// Delegate
return getConfigurableDomains()->split(strDomain, pConfigurableElement, strError);