summaryrefslogtreecommitdiff
path: root/vcl/osx/DragSourceContext.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /vcl/osx/DragSourceContext.cxx
parent6fc2bd0094a23aafadeef3f4a8c2803d621a588d (diff)
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'vcl/osx/DragSourceContext.cxx')
-rw-r--r--vcl/osx/DragSourceContext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/osx/DragSourceContext.cxx b/vcl/osx/DragSourceContext.cxx
index 1eb4fe3ac78e..ff1e98069f2d 100644
--- a/vcl/osx/DragSourceContext.cxx
+++ b/vcl/osx/DragSourceContext.cxx
@@ -37,23 +37,23 @@ DragSourceContext::~DragSourceContext()
}
sal_Int32 SAL_CALL DragSourceContext::getCurrentCursor( )
- throw( RuntimeException)
+ throw( RuntimeException, std::exception)
{
return 0;
}
void SAL_CALL DragSourceContext::setCursor( sal_Int32 /*cursorId*/ )
- throw( RuntimeException)
+ throw( RuntimeException, std::exception)
{
}
void SAL_CALL DragSourceContext::setImage( sal_Int32 /*imageId*/ )
- throw( RuntimeException)
+ throw( RuntimeException, std::exception)
{
}
void SAL_CALL DragSourceContext::transferablesFlavorsChanged( )
- throw( RuntimeException)
+ throw( RuntimeException, std::exception)
{
}