updatefeed.cxx (2a97ec55) updatefeed.cxx (83b92653)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 636 unchanged lines hidden (view full) ---

645 {
646 return new SingleUpdateInformationEnumeration(xElement);
647 }
648 }
649
650 if( m_bCancelled.check() )
651 break;
652 }
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 636 unchanged lines hidden (view full) ---

645 {
646 return new SingleUpdateInformationEnumeration(xElement);
647 }
648 }
649
650 if( m_bCancelled.check() )
651 break;
652 }
653 // rethrow runtime exceptions
654 catch( uno::RuntimeException const & ) { throw; }
653 catch( uno::RuntimeException const& /*e*/)
654 {
655 // #i118675# ignore runtime exceptions for now
656 // especially the "unsatisfied query for interface of type com.sun.star.ucb.XCommandProcessor!" exception
657 }
655
656 // rethrow only if last url in the list
657 catch( uno::Exception const & )
658 {
659 if( n+1 >= repositories.getLength() )
660 throw;
661 }
662 }

--- 197 unchanged lines hidden ---
658
659 // rethrow only if last url in the list
660 catch( uno::Exception const & )
661 {
662 if( n+1 >= repositories.getLength() )
663 throw;
664 }
665 }

--- 197 unchanged lines hidden ---