You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2011/12/15 15:59:31 UTC

svn commit: r1214797 - /incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx

Author: hdu
Date: Thu Dec 15 14:59:30 2011
New Revision: 1214797

URL: http://svn.apache.org/viewvc?rev=1214797&view=rev
Log:
#i118675# make check for extension updates more stable

Modified:
    incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx

Modified: incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx?rev=1214797&r1=1214796&r2=1214797&view=diff
==============================================================================
--- incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx (original)
+++ incubator/ooo/trunk/main/extensions/source/update/feed/updatefeed.cxx Thu Dec 15 14:59:30 2011
@@ -650,8 +650,11 @@ UpdateInformationProvider::getUpdateInfo
             if( m_bCancelled.check() )
                 break;
         }
-        // rethrow runtime exceptions
-        catch( uno::RuntimeException const & ) { throw; }
+        catch( uno::RuntimeException const& /*e*/)
+        {
+            // #i118675# ignore runtime exceptions for now
+            // especially the "unsatisfied query for interface of type com.sun.star.ucb.XCommandProcessor!" exception
+        }
 
         // rethrow only if last url in the list
         catch( uno::Exception const & )