summaryrefslogtreecommitdiff
path: root/xmloff/source/forms/propertyimport.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/forms/propertyimport.hxx')
-rw-r--r--xmloff/source/forms/propertyimport.hxx13
1 files changed, 12 insertions, 1 deletions
diff --git a/xmloff/source/forms/propertyimport.hxx b/xmloff/source/forms/propertyimport.hxx
index 8cb81595f04e..70b1dd71ec84 100644
--- a/xmloff/source/forms/propertyimport.hxx
+++ b/xmloff/source/forms/propertyimport.hxx
@@ -42,10 +42,21 @@ namespace xmloff
class PropertyConversion
{
public:
+ template<typename EnumT>
static css::uno::Any convertString(
const css::uno::Type& _rExpectedType,
const OUString& _rReadCharacters,
- const SvXMLEnumMapEntry* _pEnumMap = nullptr,
+ const SvXMLEnumMapEntry<EnumT>* _pEnumMap = nullptr,
+ const bool _bInvertBoolean = false
+ )
+ {
+ return convertString(_rExpectedType, _rReadCharacters,
+ reinterpret_cast<const SvXMLEnumMapEntry<sal_uInt16>*>(_pEnumMap), _bInvertBoolean);
+ }
+ static css::uno::Any convertString(
+ const css::uno::Type& _rExpectedType,
+ const OUString& _rReadCharacters,
+ const SvXMLEnumMapEntry<sal_uInt16>* _pEnumMap = nullptr,
const bool _bInvertBoolean = false
);