Tag: cws_src680_warnings01 User: fs Date: 06/06/13 05:45:50 Modified: /dba/dbaccess/source/core/dataaccess/ datasource.cxx
Log: #i66365# adjust error message File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: datasource.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/datasource.cxx?r1=1.65.28.3&r2=1.65.28.4 Delta lines: +6 -4 ------------------- --- datasource.cxx 23 May 2006 23:44:59 -0000 1.65.28.3 +++ datasource.cxx 13 Jun 2006 12:45:47 -0000 1.65.28.4 @@ -4,9 +4,9 @@ * * $RCSfile: datasource.cxx,v $ * - * $Revision: 1.65.28.3 $ + * $Revision: 1.65.28.4 $ * - * last change: $Author: sb $ $Date: 2006/05/23 23:44:59 $ + * last change: $Author: fs $ $Date: 2006/06/13 12:45:47 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -849,7 +849,9 @@ ::rtl::OUString sMessage = DBACORE_RESSTRING( nExceptionMessageId ); SQLContext aContext; - aContext.Message = m_pImpl->m_sConnectURL; + aContext.Message = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "A connection for the following URL was requested: " ) ); + // TODO: resource + aContext.Message += m_pImpl->m_sConnectURL; throwGenericSQLException( sMessage, static_cast< XDataSource* >( this ), makeAny( aContext ) ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
