diff options
author | Thomas Lange <tl@openoffice.org> | 2001-02-27 13:50:28 +0000 |
---|---|---|
committer | Thomas Lange <tl@openoffice.org> | 2001-02-27 13:50:28 +0000 |
commit | 3a50be2ff9d7440d13a9d8e05e8a6bfb70a9476a (patch) | |
tree | 283ee4f885b2ecb3a205e39ed9207688537e8cf0 /sw/inc/swmodule.hxx | |
parent | 7ef217306a6d46ed8b0a017068333787c231e946 (diff) |
#70880#, #72626#: xDicListEvtListener member removed; xLngSvcEvtListener added; appropriate interface changes applied
Diffstat (limited to 'sw/inc/swmodule.hxx')
-rw-r--r-- | sw/inc/swmodule.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sw/inc/swmodule.hxx b/sw/inc/swmodule.hxx index e640aed4430d..842d9138a640 100644 --- a/sw/inc/swmodule.hxx +++ b/sw/inc/swmodule.hxx @@ -2,9 +2,9 @@ * * $RCSfile: swmodule.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: os $ $Date: 2001-02-21 12:07:20 $ + * last change: $Author: tl $ $Date: 2001-02-27 14:47:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -79,8 +79,8 @@ #ifndef _STRING_HXX #include <tools/string.hxx> #endif -#ifndef _COM_SUN_STAR_LINGUISTIC2_XDICTIONARYLISTEVENTLISTENER_HPP_ -#include <com/sun/star/linguistic2/XDictionaryListEventListener.hpp> +#ifndef _COM_SUN_STAR_LINGUISTIC2_XLINGUSERVICEEVENTLISTENER_HPP_ +#include <com/sun/star/linguistic2/XLinguServiceEventListener.hpp> #endif #ifndef _VCL_FLDUNIT_HXX #include <vcl/fldunit.hxx> @@ -150,7 +150,7 @@ class SwModule: public SwModuleDummy , public SfxListener // DictionaryList listener to trigger spellchecking or hyphenation ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > xDicListEvtListener; + ::com::sun::star::linguistic2::XLinguServiceEventListener > xLngSvcEvtListener; ::com::sun::star::uno::Reference< ::com::sun::star::scanner::XScannerManager > m_xScannerManager; @@ -286,11 +286,11 @@ public: sal_Bool bIsSpellWrongAgain, sal_Bool bIsSpellAllAgain ); inline ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > - GetDicListEvtListener(); - inline void SetDicListEvtListener( + ::com::sun::star::linguistic2::XLinguServiceEventListener > + GetLngSvcEvtListener(); + inline void SetLngSvcEvtListener( ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > & xLstnr); + ::com::sun::star::linguistic2::XLinguServiceEventListener > & xLstnr); ::com::sun::star::uno::Reference< ::com::sun::star::scanner::XScannerManager > @@ -300,17 +300,17 @@ public: inline ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > - SwModule::GetDicListEvtListener() + ::com::sun::star::linguistic2::XLinguServiceEventListener > + SwModule::GetLngSvcEvtListener() { - return xDicListEvtListener; + return xLngSvcEvtListener; } -inline void SwModule::SetDicListEvtListener( +inline void SwModule::SetLngSvcEvtListener( ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > & xLstnr) + ::com::sun::star::linguistic2::XLinguServiceEventListener > & xLstnr) { - xDicListEvtListener = xLstnr; + xLngSvcEvtListener = xLstnr; } |