diff options
Diffstat (limited to 'parameter/ErrorContext.cpp')
-rw-r--r-- | parameter/ErrorContext.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parameter/ErrorContext.cpp b/parameter/ErrorContext.cpp index dee1a90..e9c0b43 100644 --- a/parameter/ErrorContext.cpp +++ b/parameter/ErrorContext.cpp @@ -29,22 +29,22 @@ */ #include "ErrorContext.h" -CErrorContext::CErrorContext(string& strError) : _strError(strError) +CErrorContext::CErrorContext(std::string& strError) : _strError(strError) { } // Error -void CErrorContext::setError(const string& strError) +void CErrorContext::setError(const std::string& strError) { _strError = strError; } -void CErrorContext::appendToError(const string& strAppend) +void CErrorContext::appendToError(const std::string& strAppend) { _strError += strAppend; } -const string& CErrorContext::getError() const +const std::string& CErrorContext::getError() const { return _strError; } |