summaryrefslogtreecommitdiff
path: root/sw/inc/swmodule.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-05 15:55:58 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-06 05:44:52 +0000
commit7a401e5e83abb41b51fca92e3d92dfb2fff6d0e6 (patch)
tree09792748ab8f1e7f976d28c2163637f8268f6d36 /sw/inc/swmodule.hxx
parentcb27eef229ce7f3d415184e74d1cb24ec2f8510c (diff)
com::sun::star->css in sw/inc
Change-Id: I6ffdb1deaa32156c65f997a1a1056928b7cd863d Reviewed-on: https://gerrit.libreoffice.org/19803 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc/swmodule.hxx')
-rw-r--r--sw/inc/swmodule.hxx21
1 files changed, 7 insertions, 14 deletions
diff --git a/sw/inc/swmodule.hxx b/sw/inc/swmodule.hxx
index db7c33733a85..9ccb175bb1ab 100644
--- a/sw/inc/swmodule.hxx
+++ b/sw/inc/swmodule.hxx
@@ -97,12 +97,9 @@ class SW_DLLPUBLIC SwModule: public SfxModule, public SfxListener, public utl::C
std::vector<OUString>* m_pAuthorNames;
// DictionaryList listener to trigger spellchecking or hyphenation
- ::com::sun::star::uno::Reference<
- ::com::sun::star::linguistic2::XLinguServiceEventListener > m_xLinguServiceEventListener;
- ::com::sun::star::uno::Reference<
- ::com::sun::star::scanner::XScannerManager2 > m_xScannerManager;
- ::com::sun::star::uno::Reference<
- ::com::sun::star::linguistic2::XLanguageGuessing > m_xLanguageGuesser;
+ css::uno::Reference< css::linguistic2::XLinguServiceEventListener > m_xLinguServiceEventListener;
+ css::uno::Reference< css::scanner::XScannerManager2 > m_xScannerManager;
+ css::uno::Reference< css::linguistic2::XLanguageGuessing > m_xLanguageGuesser;
bool m_bAuthorInitialised : 1;
bool m_bEmbeddedLoadSave : 1;
@@ -230,22 +227,18 @@ public:
static void CheckSpellChanges( bool bOnlineSpelling,
bool bIsSpellWrongAgain, bool bIsSpellAllAgain, bool bSmartTags );
- inline ::com::sun::star::uno::Reference<
- ::com::sun::star::linguistic2::XLinguServiceEventListener >
+ inline css::uno::Reference< css::linguistic2::XLinguServiceEventListener >
GetLngSvcEvtListener();
void CreateLngSvcEvtListener();
- ::com::sun::star::uno::Reference<
- ::com::sun::star::scanner::XScannerManager2 >
+ css::uno::Reference< css::scanner::XScannerManager2 >
GetScannerManager();
- ::com::sun::star::uno::Reference<
- ::com::sun::star::linguistic2::XLanguageGuessing >
+ css::uno::Reference< css::linguistic2::XLanguageGuessing >
GetLanguageGuesser();
};
-inline ::com::sun::star::uno::Reference<
- ::com::sun::star::linguistic2::XLinguServiceEventListener >
+inline css::uno::Reference< css::linguistic2::XLinguServiceEventListener >
SwModule::GetLngSvcEvtListener()
{
return m_xLinguServiceEventListener;