Tag: cws_src680_dba20v2 User: oj Date: 05/07/20 05:09:41 Modified: /dba/dbaccess/source/filter/xml/ dbloader2.cxx
Log: #i51088# try catch inserted File Changes: Directory: /dba/dbaccess/source/filter/xml/ =========================================== File [changed]: dbloader2.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/filter/xml/dbloader2.cxx?r1=1.13&r2=1.13.18.1 Delta lines: +6 -4 ------------------- --- dbloader2.cxx 30 Jun 2005 16:29:17 -0000 1.13 +++ dbloader2.cxx 20 Jul 2005 12:09:38 -0000 1.13.18.1 @@ -2,9 +2,9 @@ * * $RCSfile: dbloader2.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.13.18.1 $ * - * last change: $Author: kz $ $Date: 2005/06/30 16:29:17 $ + * last change: $Author: oj $ $Date: 2005/07/20 12:09:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -250,7 +250,8 @@ // ------------------------------------------------------------------------- ::rtl::OUString SAL_CALL DBTypeDetection::detect( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Descriptor ) throw (::com::sun::star::uno::RuntimeException) { - + try + { ::comphelper::SequenceAsHashMap aTemp(Descriptor); ::rtl::OUString sTemp = aTemp.getUnpackedValueOrDefault(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("URL")),::rtl::OUString()); @@ -272,6 +273,7 @@ } } } + } catch(Exception&){} return ::rtl::OUString(); } // ------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
