Index: src/libchcore/TTaskConfiguration.h =================================================================== diff -u -N -r6103ac74583f2136b821dc67515ed8469abd8155 -r11b0a299be97bc3afaa633d6522c17b214ba3b79 --- src/libchcore/TTaskConfiguration.h (.../TTaskConfiguration.h) (revision 6103ac74583f2136b821dc67515ed8469abd8155) +++ src/libchcore/TTaskConfiguration.h (.../TTaskConfiguration.h) (revision 11b0a299be97bc3afaa633d6522c17b214ba3b79) @@ -128,7 +128,7 @@ ///////////////////////////////////////////////////////////////////////////////////////////// // Properties retrieval template -typename TaskPropData::value_type GetTaskPropValue(const chcore::TConfig& rConfig) +typename TaskPropData::value_type GetTaskPropValue(const TConfig& rConfig) { typename TaskPropData::value_type tValue; bool bResult = GetConfigValue(rConfig, TaskPropData::GetPropertyName(), tValue); @@ -140,7 +140,7 @@ } template -bool GetTaskPropValue(const chcore::TConfig& rConfig, typename TaskPropData::value_type& rValue) +bool GetTaskPropValue(const TConfig& rConfig, typename TaskPropData::value_type& rValue) { bool bResult = GetConfigValue(rConfig, TaskPropData::GetPropertyName(), rValue); if(bResult) @@ -149,7 +149,7 @@ } template -void SetTaskPropValue(chcore::TConfig& rConfig, const typename TaskPropData::value_type& rValue) +void SetTaskPropValue(TConfig& rConfig, const typename TaskPropData::value_type& rValue) { SetConfigValue(rConfig, TaskPropData::GetPropertyName(), rValue); }