diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-02 21:02:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-02 21:02:04 +0200 |
commit | 4d2923e1876e1c3a1da9056e4508be71e6cac9f3 (patch) | |
tree | 99e00c70d7d854cffab94d77a59c2f735db58cb7 /lingucomponent | |
parent | 00a19743cd02d5d2c5c6169a4c49ef191e8d39b7 (diff) |
loplugin:redundantcast
Change-Id: I3ef78881cfed8b66f067e9164efcccf425fb549c
Diffstat (limited to 'lingucomponent')
-rw-r--r-- | lingucomponent/source/spellcheck/macosxspell/macreg.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lingucomponent/source/spellcheck/macosxspell/macreg.mm b/lingucomponent/source/spellcheck/macosxspell/macreg.mm index b3504c10b26c..648fc84526d0 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macreg.mm +++ b/lingucomponent/source/spellcheck/macosxspell/macreg.mm @@ -38,7 +38,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL MacOSXSpell_component_getFactory( void * pRet = NULL; pRet = MacSpellChecker_getFactory( pImplName, - reinterpret_cast< XMultiServiceFactory * >( pServiceManager ), + static_cast< XMultiServiceFactory * >( pServiceManager ), pRegistryKey ); return pRet; |