summaryrefslogtreecommitdiff
path: root/sw/inc/dlelstnr.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/dlelstnr.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/dlelstnr.hxx')
-rw-r--r--sw/inc/dlelstnr.hxx21
1 files changed, 9 insertions, 12 deletions
diff --git a/sw/inc/dlelstnr.hxx b/sw/inc/dlelstnr.hxx
index cf2748be98ee..b499c57af0e7 100644
--- a/sw/inc/dlelstnr.hxx
+++ b/sw/inc/dlelstnr.hxx
@@ -46,16 +46,13 @@ namespace com { namespace sun { namespace star {
class SwLinguServiceEventListener :
public cppu::WeakImplHelper
<
- com::sun::star::linguistic2::XLinguServiceEventListener,
- com::sun::star::frame::XTerminateListener
+ css::linguistic2::XLinguServiceEventListener,
+ css::frame::XTerminateListener
>
{
- com::sun::star::uno::Reference<
- com::sun::star::frame::XDesktop2 > xDesktop;
- com::sun::star::uno::Reference<
- com::sun::star::linguistic2::XLinguServiceManager2 > xLngSvcMgr;
- com::sun::star::uno::Reference<
- com::sun::star::linguistic2::XProofreadingIterator > xGCIterator;
+ css::uno::Reference<css::frame::XDesktop2 > xDesktop;
+ css::uno::Reference<css::linguistic2::XLinguServiceManager2 > xLngSvcMgr;
+ css::uno::Reference<css::linguistic2::XProofreadingIterator > xGCIterator;
SwLinguServiceEventListener(const SwLinguServiceEventListener &) = delete;
SwLinguServiceEventListener & operator = (const SwLinguServiceEventListener &) = delete;
@@ -65,14 +62,14 @@ public:
virtual ~SwLinguServiceEventListener();
/// XEventListener
- virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& rEventObj ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL disposing( const css::lang::EventObject& rEventObj ) throw(css::uno::RuntimeException, std::exception) override;
/// XLinguServiceEventListener
- virtual void SAL_CALL processLinguServiceEvent( const ::com::sun::star::linguistic2::LinguServiceEvent& rLngSvcEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL processLinguServiceEvent( const css::linguistic2::LinguServiceEvent& rLngSvcEvent ) throw(css::uno::RuntimeException, std::exception) override;
/// XTerminateListener
- virtual void SAL_CALL queryTermination( const ::com::sun::star::lang::EventObject& rEventObj ) throw(::com::sun::star::frame::TerminationVetoException, ::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL notifyTermination( const ::com::sun::star::lang::EventObject& rEventObj ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL queryTermination( const css::lang::EventObject& rEventObj ) throw(css::frame::TerminationVetoException, css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL notifyTermination( const css::lang::EventObject& rEventObj ) throw(css::uno::RuntimeException, std::exception) override;
};
#endif