diff options
Diffstat (limited to 'vcl/win/dtrans/targetdragcontext.hxx')
-rw-r--r-- | vcl/win/dtrans/targetdragcontext.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/win/dtrans/targetdragcontext.hxx b/vcl/win/dtrans/targetdragcontext.hxx index c55a8fe673e9..5c05acc35da9 100644 --- a/vcl/win/dtrans/targetdragcontext.hxx +++ b/vcl/win/dtrans/targetdragcontext.hxx @@ -30,7 +30,7 @@ using namespace ::cppu; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; -class TargetDragContext: public WeakImplHelper<XDropTargetDragContext> +class TargetDragContext : public WeakImplHelper<XDropTargetDragContext> { // some calls to the functions of XDropTargetDragContext are delegated // to non-interface functions of m_pDropTarget @@ -39,11 +39,11 @@ class TargetDragContext: public WeakImplHelper<XDropTargetDragContext> public: explicit TargetDragContext(DropTarget* pTarget); ~TargetDragContext() override; - TargetDragContext( const TargetDragContext&) = delete; - TargetDragContext &operator= ( const TargetDragContext&) = delete; + TargetDragContext(const TargetDragContext&) = delete; + TargetDragContext& operator=(const TargetDragContext&) = delete; - virtual void SAL_CALL acceptDrag( sal_Int8 dragOperation ) override; - virtual void SAL_CALL rejectDrag( ) override; + virtual void SAL_CALL acceptDrag(sal_Int8 dragOperation) override; + virtual void SAL_CALL rejectDrag() override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |