User: rt Date: 2007-07-24 12:10:28+0000 Modified: dba/dbaccess/source/ui/misc/datasourceconnector.cxx
Log: INTEGRATION: CWS dba23b (1.11.100); FILE MERGED 2007/07/11 11:54:08 fs 1.11.100.2: RESYNC: (1.11-1.12); FILE MERGED 2007/07/08 20:35:13 fs 1.11.100.1: 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.12&r2=1.13 Delta lines: +5 -8 ------------------- --- datasourceconnector.cxx 2007-07-06 08:36:26+0000 1.12 +++ datasourceconnector.cxx 2007-07-24 12:10:26+0000 1.13 @@ -123,11 +123,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(); } @@ -241,13 +240,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]
