Tag: cws_dev300_odbmacros3 User: fs Date: 2008-05-21 12:26:56+0000 Modified: dba/dbaccess/source/ext/macromigration/migrationlog.cxx
Log: removed unneeded strings File Changes: Directory: /dba/dbaccess/source/ext/macromigration/ =================================================== File [changed]: migrationlog.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ext/macromigration/migrationlog.cxx?r1=1.4.2.6&r2=1.4.2.7 Delta lines: +3 -4 ------------------- --- migrationlog.cxx 2008-05-19 21:19:18+0000 1.4.2.6 +++ migrationlog.cxx 2008-05-21 12:26:53+0000 1.4.2.7 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: migrationlog.cxx,v $ - * $Revision: 1.4.2.6 $ + * $Revision: 1.4.2.7 $ * * This file is part of OpenOffice.org. * @@ -395,21 +395,20 @@ _rBuffer.appendAscii( " ===\n" ); String sException( MacroMigrationResId( STR_EXCEPTION ) ); - String sType( MacroMigrationResId( STR_ERROR_TYPE ) ); - String sDetails( MacroMigrationResId( STR_ERROR_DETAILS ) ); for ( ErrorLog::const_iterator error = _rErrors.begin(); error != _rErrors.end(); ++error ) { - _rBuffer.append( sType ); + _rBuffer.append( sal_Unicode( '-' ) ); lcl_appendErrorDescription( _rBuffer, *error ); _rBuffer.append( sal_Unicode( '\n' ) ); if ( !error->aCaughtException.hasValue() ) continue; + _rBuffer.append( sException ); _rBuffer.append( ::comphelper::anyToString( error->aCaughtException ) ); _rBuffer.append( sal_Unicode( '\n' ) ); _rBuffer.append( sal_Unicode( '\n' ) ); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
