diff options
Diffstat (limited to 'parameter/ComponentInstance.cpp')
-rw-r--r-- | parameter/ComponentInstance.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parameter/ComponentInstance.cpp b/parameter/ComponentInstance.cpp index 12566d5..572de7a 100644 --- a/parameter/ComponentInstance.cpp +++ b/parameter/ComponentInstance.cpp @@ -50,10 +50,10 @@ bool CComponentInstance::childrenAreDynamic() const return true; } -bool CComponentInstance::getMappingData(const string& strKey, string& strValue) const +bool CComponentInstance::getMappingData(const string& strKey, const string*& pStrValue) const { // Try myself first then associated component type - return base::getMappingData(strKey, strValue) || (_pComponentType && _pComponentType->getMappingData(strKey, strValue)); + return base::getMappingData(strKey, pStrValue) || (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); } bool CComponentInstance::hasMappingData() const |