summaryrefslogtreecommitdiff
path: root/dtrans/source/win32/dnd/sourcecontext.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-14 16:57:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-16 14:19:20 +0000
commit1f9b6013e507ee4acb9374cee909f59139d52978 (patch)
tree014cc1248815b7722cea3e20af0c09d58fe37f46 /dtrans/source/win32/dnd/sourcecontext.hxx
parent5eab3e5eec67ad97f39f792852e88003fea89d1c (diff)
clang-cl loplugin: dtrans
Change-Id: I1d55f3e7ecbde486f318d5175b1570f0caa33255 Reviewed-on: https://gerrit.libreoffice.org/29870 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'dtrans/source/win32/dnd/sourcecontext.hxx')
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/dtrans/source/win32/dnd/sourcecontext.hxx b/dtrans/source/win32/dnd/sourcecontext.hxx
index 9f1788b22e56..b70a0cec8ead 100644
--- a/dtrans/source/win32/dnd/sourcecontext.hxx
+++ b/dtrans/source/win32/dnd/sourcecontext.hxx
@@ -46,7 +46,7 @@ class SourceContext: public MutexDummy,
public:
SourceContext( DragSource* pSource, const Reference<XDragSourceListener>& listener);
- ~SourceContext();
+ ~SourceContext() override;
SourceContext(const SourceContext&) = delete;
SourceContext &operator= (const SourceContext&) = delete;
@@ -55,16 +55,16 @@ public:
virtual void SAL_CALL removeDragSourceListener( const Reference<XDragSourceListener >& dsl )
throw( RuntimeException);
virtual sal_Int32 SAL_CALL getCurrentCursor( )
- throw( RuntimeException);
+ throw( RuntimeException) override;
virtual void SAL_CALL setCursor( sal_Int32 cursorId )
- throw( RuntimeException);
+ throw( RuntimeException) override;
virtual void SAL_CALL setImage( sal_Int32 imageId )
- throw( RuntimeException);
+ throw( RuntimeException) override;
virtual void SAL_CALL transferablesFlavorsChanged( )
- throw( RuntimeException);
+ throw( RuntimeException) override;
// non - interface functions
- void fire_dragDropEnd( sal_Bool success, sal_Int8 byte);
+ void fire_dragDropEnd( bool success, sal_Int8 byte);
void fire_dropActionChanged( sal_Int8 dropAction, sal_Int8 userAction);
};