summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-26 19:31:25 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 19:31:25 +0100
commit18ae3de84085c399e94ff4b94e9a83b168325283 (patch)
tree1c1936de2f958c09295a742d085f936af020845d /ucb
parenteb4187edbe411ed26861ec8c5b4f29708907cbf4 (diff)
std::exception fixup for --enable-gnome-vfs
Change-Id: Ia0a903a38f8ae2897d0d9d6159597f720bbc24a5
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/gvfs/gvfs_content.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/gvfs/gvfs_content.cxx b/ucb/source/ucp/gvfs/gvfs_content.cxx
index 3b481c8e46e4..ef33a856e1b5 100644
--- a/ucb/source/ucp/gvfs/gvfs_content.cxx
+++ b/ucb/source/ucp/gvfs/gvfs_content.cxx
@@ -163,7 +163,7 @@ void SAL_CALL Content::release()
ContentImplHelper::release();
}
uno::Any SAL_CALL Content::queryInterface( const uno::Type & rType )
- throw ( uno::RuntimeException )
+ throw ( uno::RuntimeException, std::exception )
{
// Note: isFolder may require network activities! So call it only
// if it is really necessary!!!
@@ -183,7 +183,7 @@ uno::Any SAL_CALL Content::queryInterface( const uno::Type & rType )
XTYPEPROVIDER_COMMON_IMPL( Content );
uno::Sequence< uno::Type > SAL_CALL Content::getTypes()
- throw( uno::RuntimeException )
+ throw( uno::RuntimeException, std::exception )
{
static cppu::OTypeCollection *pFolderCollection = NULL;
static cppu::OTypeCollection *pFileCollection = NULL;