summaryrefslogtreecommitdiffstats
path: root/parameter/StringParameterType.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/StringParameterType.cpp')
-rw-r--r--parameter/StringParameterType.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/parameter/StringParameterType.cpp b/parameter/StringParameterType.cpp
index d47895d..321dc97 100644
--- a/parameter/StringParameterType.cpp
+++ b/parameter/StringParameterType.cpp
@@ -29,6 +29,7 @@
*/
#include "StringParameterType.h"
#include "StringParameter.h"
+#include "Utility.h"
#define base CTypeElement
@@ -51,7 +52,7 @@ void CStringParameterType::showProperties(string& strResult) const
// Max length
strResult += "Max length: ";
- strResult += toString(_uiMaxLength);
+ strResult += CUtility::toString(_uiMaxLength);
strResult += "\n";
}