summaryrefslogtreecommitdiff
path: root/scaddins/source/pricing/pricing.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'scaddins/source/pricing/pricing.hxx')
-rw-r--r--scaddins/source/pricing/pricing.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/scaddins/source/pricing/pricing.hxx b/scaddins/source/pricing/pricing.hxx
index 6ee27108c2ba..76257fbd8e78 100644
--- a/scaddins/source/pricing/pricing.hxx
+++ b/scaddins/source/pricing/pricing.hxx
@@ -66,23 +66,23 @@ struct ScaFuncDataBase
// (English) function names again.
// see also: GetExcelName() or GetCompNames() or getCompatibilityNames()
const char* pCompName;
- sal_uInt16 nParamCount; // number of named / described parameters
- ScaCategory eCat; // function category
- bool bDouble; // name already exist in Calc
- bool bWithOpt; // first parameter is internal
+ sal_uInt16 const nParamCount; // number of named / described parameters
+ ScaCategory const eCat; // function category
+ bool const bDouble; // name already exist in Calc
+ bool const bWithOpt; // first parameter is internal
};
class ScaFuncData final
{
private:
- OUString aIntName; // internal name (get***)
+ OUString const aIntName; // internal name (get***)
const char* pUINameID; // resource ID to UI name
const char** pDescrID; // leads also to parameter descriptions!
- sal_uInt16 nParamCount; // num of parameters
+ sal_uInt16 const nParamCount; // num of parameters
std::vector<OUString> aCompList; // list of all valid names
- ScaCategory eCat; // function category
- bool bDouble; // name already exist in Calc
- bool bWithOpt; // first parameter is internal
+ ScaCategory const eCat; // function category
+ bool const bDouble; // name already exist in Calc
+ bool const bWithOpt; // first parameter is internal
public:
ScaFuncData(const ScaFuncDataBase& rBaseData);