diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:40:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:40:02 +0200 |
commit | 1fa272a660b23c45c25062972d3b875ae2d0bb3f (patch) | |
tree | c360f9d09f490df99066d1e514cf293bb6653ee8 /linguistic | |
parent | e5b4bda01a81907805113bd03b43ecc2f470500e (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Ia569901fd6061d9ccb8a584cac12e1ec59242d33
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/lngopt.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx index 07b2026502b5..f98ec4f844ef 100644 --- a/linguistic/source/lngopt.cxx +++ b/linguistic/source/lngopt.cxx @@ -161,31 +161,31 @@ static const SfxItemPropertyMapEntry* lcl_GetLinguProps() { OUString(UPN_HYPH_MIN_WORD_LENGTH), WID_HYPH_MIN_WORD_LENGTH, ::cppu::UnoType<sal_Int16>::get(), 0, 0 }, { OUString(UPN_IS_GERMAN_PRE_REFORM), WID_IS_GERMAN_PRE_REFORM, /*! deprecated !*/ - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_HYPH_AUTO), WID_IS_HYPH_AUTO, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_HYPH_SPECIAL), WID_IS_HYPH_SPECIAL, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_IGNORE_CONTROL_CHARACTERS), WID_IS_IGNORE_CONTROL_CHARACTERS, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_AUTO), WID_IS_SPELL_AUTO, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_CAPITALIZATION), WID_IS_SPELL_CAPITALIZATION, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_HIDE), WID_IS_SPELL_HIDE, /*! deprecated !*/ - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_IN_ALL_LANGUAGES), WID_IS_SPELL_IN_ALL_LANGUAGES, /*! deprecated !*/ - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_SPECIAL), WID_IS_SPELL_SPECIAL, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_UPPER_CASE), WID_IS_SPELL_UPPER_CASE, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_SPELL_WITH_DIGITS), WID_IS_SPELL_WITH_DIGITS, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_USE_DICTIONARY_LIST), WID_IS_USE_DICTIONARY_LIST, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(UPN_IS_WRAP_REVERSE), WID_IS_WRAP_REVERSE, - ::getBooleanCppuType(), 0, 0 }, + cppu::UnoType<bool>::get(), 0, 0 }, { OUString(), 0, css::uno::Type(), 0, 0 } }; return aLinguProps; |