[Libreoffice-commits] core.git: ucb/source

Stephan Bergmann sbergman at redhat.com
Wed Feb 26 10:31:53 PST 2014


 ucb/source/ucp/gvfs/gvfs_content.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 18ae3de84085c399e94ff4b94e9a83b168325283
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Feb 26 19:31:25 2014 +0100

    std::exception fixup for --enable-gnome-vfs
    
    Change-Id: Ia0a903a38f8ae2897d0d9d6159597f720bbc24a5

diff --git a/ucb/source/ucp/gvfs/gvfs_content.cxx b/ucb/source/ucp/gvfs/gvfs_content.cxx
index 3b481c8..ef33a85 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;


More information about the Libreoffice-commits mailing list