summaryrefslogtreecommitdiffstats
path: root/basctl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-12 16:17:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-05-13 15:47:06 +0200
commit943fbfad668da76f7d0ebd4f4d8cdd67224d2f01 (patch)
tree2aeb561967e15e2d82b254e34d9e1359f607342a /basctl
parentRelated tdf#132945: fix warning (diff)
downloadcore-943fbfad668da76f7d0ebd4f4d8cdd67224d2f01.tar.gz
core-943fbfad668da76f7d0ebd4f4d8cdd67224d2f01.zip
expand out some namespace aliases
Change-Id: I5fdb554a1b116824843f35645bc1cea3ca91e0f2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94093 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/doceventnotifier.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/basctl/source/basicide/doceventnotifier.cxx b/basctl/source/basicide/doceventnotifier.cxx
index b8806a58bdd3..83d2ea04dff3 100644
--- a/basctl/source/basicide/doceventnotifier.cxx
+++ b/basctl/source/basicide/doceventnotifier.cxx
@@ -45,8 +45,6 @@ namespace basctl
using ::com::sun::star::frame::theGlobalEventBroadcaster;
using ::com::sun::star::uno::UNO_QUERY;
- namespace csslang = ::com::sun::star::lang;
-
// DocumentEventNotifier::Impl
typedef ::cppu::WeakComponentImplHelper< XDocumentEventListener
@@ -79,7 +77,7 @@ namespace basctl
virtual void SAL_CALL documentEventOccured( const DocumentEvent& Event ) override;
// XEventListener
- virtual void SAL_CALL disposing( const csslang::EventObject& Event ) override;
+ virtual void SAL_CALL disposing( const css::lang::EventObject& Event ) override;
// ComponentHelper
virtual void SAL_CALL disposing() override;
@@ -171,7 +169,7 @@ namespace basctl
}
}
- void SAL_CALL DocumentEventNotifier::Impl::disposing( const csslang::EventObject& /*Event*/ )
+ void SAL_CALL DocumentEventNotifier::Impl::disposing( const css::lang::EventObject& /*Event*/ )
{
SolarMutexGuard aSolarGuard;
::osl::MutexGuard aGuard( m_aMutex );