diff --git a/src/app/CFGParameterValue.cpp b/src/app/CFGParameterValue.cpp index 0a44d58..5a17cf8 100644 --- a/src/app/CFGParameterValue.cpp +++ b/src/app/CFGParameterValue.cpp @@ -5,7 +5,7 @@ CFGParameterValue::CFGParameterValue():DictionaryInterface(),_parameter(NULL), _ } -CFGParameterValue::CFGParameterValue(const char *parameter, const char *value, bool quotedParameter, bool quotedValue):_quotedParameter(quotedParameter), _quotedValue(quotedValue) +CFGParameterValue::CFGParameterValue(const char *parameter, const char *value, boolean quotedParameter, boolean quotedValue):_quotedParameter(quotedParameter), _quotedValue(quotedValue) { _parameter = (char *) malloc((strlen(parameter) * sizeof(char)) + 1); //+1 for the string terminating character _value = (char *) malloc((strlen(value) * sizeof(char)) + 1); //+1 for the string terminating character diff --git a/src/app/CFGParameterValue.h b/src/app/CFGParameterValue.h index 9ed15b1..ce4ff58 100644 --- a/src/app/CFGParameterValue.h +++ b/src/app/CFGParameterValue.h @@ -10,7 +10,7 @@ class CFGParameterValue : public DictionaryInterface { public: CFGParameterValue(); - CFGParameterValue(const char *parameter, const char *value, bool quotedParameter, bool quotedValue); + CFGParameterValue(const char *parameter, const char *value, boolean quotedParameter, boolean quotedValue); CFGParameterValue(const char *parameter, const char *value); CFGParameterValue(const CFGParameterValue &Object); ~CFGParameterValue();