summaryrefslogtreecommitdiff
path: root/unotools/source/misc/eventlisteneradapter.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 22:46:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 03:50:41 -0600
commitd722353b4ba363c452fc86be0fa20cad440c4a47 (patch)
treed8d91e763f2b89f6a2694b2d8529d80f0bc86d8d /unotools/source/misc/eventlisteneradapter.cxx
parent003342bfef0812454618f860a6e171c282d92d78 (diff)
Remove visual noise from unotools
Change-Id: I1285c4e47ad381934adc3aea6671e7c95d820c39 Reviewed-on: https://gerrit.libreoffice.org/8334 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'unotools/source/misc/eventlisteneradapter.cxx')
-rw-r--r--unotools/source/misc/eventlisteneradapter.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/unotools/source/misc/eventlisteneradapter.cxx b/unotools/source/misc/eventlisteneradapter.cxx
index d9446d59ba58..10308d2dc73f 100644
--- a/unotools/source/misc/eventlisteneradapter.cxx
+++ b/unotools/source/misc/eventlisteneradapter.cxx
@@ -25,17 +25,17 @@
#include <osl/diagnose.h>
#include <cppuhelper/implbase1.hxx>
-//.........................................................................
+
namespace utl
{
-//.........................................................................
+
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
- //=====================================================================
+
//= OEventListenerImpl
- //=====================================================================
+
class OEventListenerImpl : public ::cppu::WeakImplHelper1< XEventListener >
{
protected:
@@ -93,18 +93,18 @@ namespace utl
m_pAdapter->_disposing(_rSource);
}
- //=====================================================================
+
//= OEventListenerAdapterImpl
- //=====================================================================
+
struct OEventListenerAdapterImpl
{
public:
::std::vector< void* > aListeners;
};
- //=====================================================================
+
//= OEventListenerAdapter
- //=====================================================================
+
OEventListenerAdapter::OEventListenerAdapter()
:m_pImpl(new OEventListenerAdapterImpl)
@@ -170,8 +170,8 @@ namespace utl
m_pImpl->aListeners.push_back(pListenerImpl);
}
-//.........................................................................
+
} // namespace utl
-//.........................................................................
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */