summaryrefslogtreecommitdiff
path: root/include/unotools/transliterationwrapper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/unotools/transliterationwrapper.hxx')
-rw-r--r--include/unotools/transliterationwrapper.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/unotools/transliterationwrapper.hxx b/include/unotools/transliterationwrapper.hxx
index 2c2caa785dba..7508386bf3b7 100644
--- a/include/unotools/transliterationwrapper.hxx
+++ b/include/unotools/transliterationwrapper.hxx
@@ -30,6 +30,7 @@ namespace com { namespace sun { namespace star {
class XComponentContext;
}
}}}
+enum class TransliterationFlags;
namespace utl
{
@@ -38,7 +39,7 @@ class UNOTOOLS_DLLPUBLIC TransliterationWrapper
{
css::uno::Reference< css::i18n::XExtendedTransliteration > xTrans;
LanguageTag aLanguageTag;
- sal_uInt32 nType;
+ TransliterationFlags nType;
mutable bool bFirstCall;
TransliterationWrapper( const TransliterationWrapper& ) = delete;
@@ -49,11 +50,11 @@ class UNOTOOLS_DLLPUBLIC TransliterationWrapper
public:
TransliterationWrapper( const css::uno::Reference< css::uno::XComponentContext > & rxContext,
- sal_uInt32 nType );
+ TransliterationFlags nType );
~TransliterationWrapper();
- sal_uInt32 getType() const { return nType; }
+ TransliterationFlags getType() const { return nType; }
bool needLanguageForTheMode() const;