diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-23 13:23:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-23 13:27:47 +0200 |
commit | 0c8634317979af80a32be729ed169229e8ecff99 (patch) | |
tree | 08d7f1e4068f8c6b73cd76df2226ab4eaad8d367 /linguistic/inc/iprcache.hxx | |
parent | 728f98303193bfc9319b4e82a4078d27d1844139 (diff) |
com::sun::star->css in linguistic
Change-Id: I3708931dd96d83d1daa332e930e291c3d6cfd73b
Diffstat (limited to 'linguistic/inc/iprcache.hxx')
-rw-r--r-- | linguistic/inc/iprcache.hxx | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/linguistic/inc/iprcache.hxx b/linguistic/inc/iprcache.hxx index a5c653daa536..ab021c5b1311 100644 --- a/linguistic/inc/iprcache.hxx +++ b/linguistic/inc/iprcache.hxx @@ -44,8 +44,8 @@ class SpellCache; class FlushListener : public cppu::WeakImplHelper < - ::com::sun::star::linguistic2::XDictionaryListEventListener, - ::com::sun::star::beans::XPropertyChangeListener + css::linguistic2::XDictionaryListEventListener, + css::beans::XPropertyChangeListener > { css::uno::Reference< css::linguistic2::XSearchableDictionaryList > xDicList; @@ -59,24 +59,23 @@ public: FlushListener( SpellCache& rFO ) : mrSpellCache(rFO) {} virtual ~FlushListener() {} - void SetDicList( ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XSearchableDictionaryList > &rDL ); - void SetPropSet( ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XLinguProperties > &rPS ); + void SetDicList( css::uno::Reference< css::linguistic2::XSearchableDictionaryList > &rDL ); + void SetPropSet( css::uno::Reference< css::linguistic2::XLinguProperties > &rPS ); //XEventListener - virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& rSource ) throw(::com::sun::star::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL disposing( const css::lang::EventObject& rSource ) throw(css::uno::RuntimeException, std::exception) override; // XDictionaryListEventListener - virtual void SAL_CALL processDictionaryListEvent( const ::com::sun::star::linguistic2::DictionaryListEvent& rDicListEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL processDictionaryListEvent( const css::linguistic2::DictionaryListEvent& rDicListEvent ) throw(css::uno::RuntimeException, std::exception) override; // XPropertyChangeListener - virtual void SAL_CALL propertyChange( const ::com::sun::star::beans::PropertyChangeEvent& rEvt ) throw(::com::sun::star::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL propertyChange( const css::beans::PropertyChangeEvent& rEvt ) throw(css::uno::RuntimeException, std::exception) override; }; class SpellCache { - ::com::sun::star::uno::Reference< - ::com::sun::star::linguistic2::XDictionaryListEventListener > + css::uno::Reference< css::linguistic2::XDictionaryListEventListener > xFlushLstnr; FlushListener *pFlushLstnr; |