Tag: cws_src680_dba23b User: fs Date: 2007-07-08 20:35:20+0000 Modified: dba/dbaccess/source/ui/misc/datasourceconnector.cxx
Log: during #i65812#: context details not used File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: datasourceconnector.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/datasourceconnector.cxx?r1=1.11&r2=1.11.100.1 Delta lines: +8 -11 -------------------- --- datasourceconnector.cxx 2006-09-17 07:16:21+0000 1.11 +++ datasourceconnector.cxx 2007-07-08 20:35:13+0000 1.11.100.1 @@ -4,9 +4,9 @@ * * $RCSfile: datasourceconnector.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.11.100.1 $ * - * last change: $Author: obo $ $Date: 2006/09/17 07:16:21 $ + * last change: $Author: fs $ $Date: 2007/07/08 20:35:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -125,11 +125,10 @@ //--------------------------------------------------------------------- ODatasourceConnector::ODatasourceConnector( const Reference< XMultiServiceFactory >& _rxORB, Window* _pMessageParent, - const ::rtl::OUString& _rContextInformation, const ::rtl::OUString& _rContextDetails ) + const ::rtl::OUString& _rContextInformation ) :m_pErrorMessageParent(_pMessageParent) ,m_xORB(_rxORB) ,m_sContextInformation( _rContextInformation ) - ,m_sContextDetails( _rContextDetails ) { implConstruct(); } @@ -243,13 +242,11 @@ { if ( m_sContextInformation.getLength() ) { - SQLContext aContext; - - aContext.Message = m_sContextInformation; - aContext.Details = m_sContextDetails; - aContext.NextException = aInfo.get(); + SQLException aError; + aError.Message = m_sContextInformation; + aError.NextException = aInfo.get(); - aInfo = aContext; + aInfo = aError; } showError(aInfo, m_pErrorMessageParent, m_xORB); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
