summaryrefslogtreecommitdiffstats
path: root/parameter/TypeElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/TypeElement.cpp')
-rw-r--r--parameter/TypeElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/parameter/TypeElement.cpp b/parameter/TypeElement.cpp
index 2b9c663..34b3ce0 100644
--- a/parameter/TypeElement.cpp
+++ b/parameter/TypeElement.cpp
@@ -55,11 +55,11 @@ uint32_t CTypeElement::getArrayLength() const
return _uiArrayLength;
}
-bool CTypeElement::getMappingData(const string& strKey, string& strValue) const
+bool CTypeElement::getMappingData(const string& strKey, const string*& pStrValue) const
{
if (_pMappingData) {
- return _pMappingData->getValue(strKey, strValue);
+ return _pMappingData->getValue(strKey, pStrValue);
}
return false;
}