summaryrefslogtreecommitdiff
path: root/dbaccess/source/ext/macromigration
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-13 16:14:08 +0200
committerNoel Grandin <noel@peralex.com>2013-11-14 08:17:30 +0200
commitd9648d3567e60f4482984a25e2b78e8a2fae52e3 (patch)
tree0edfb9386344f4745704d6d3b3763a7ebccfe0fb /dbaccess/source/ext/macromigration
parent531c2dc791098d3d335abc0ddd055780fe3b7f2a (diff)
remove unnecessary sal_Unicode casts in DBACCESS module
Change-Id: I4c4ab5d672e994b1e8e3beac027d3f4e8f700714
Diffstat (limited to 'dbaccess/source/ext/macromigration')
-rw-r--r--dbaccess/source/ext/macromigration/migrationlog.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ext/macromigration/migrationlog.cxx b/dbaccess/source/ext/macromigration/migrationlog.cxx
index 6f476ae4d022..e17ec8db756b 100644
--- a/dbaccess/source/ext/macromigration/migrationlog.cxx
+++ b/dbaccess/source/ext/macromigration/migrationlog.cxx
@@ -363,18 +363,18 @@ namespace dbmm
++error
)
{
- _rBuffer.append( sal_Unicode( '-' ) );
- _rBuffer.append( sal_Unicode( ' ' ) );
+ _rBuffer.append( '-' );
+ _rBuffer.append( ' ' );
lcl_appendErrorDescription( _rBuffer, *error );
- _rBuffer.append( sal_Unicode( '\n' ) );
+ _rBuffer.append( '\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' ) );
+ _rBuffer.append( '\n' );
+ _rBuffer.append( '\n' );
}
}
}
@@ -440,7 +440,7 @@ namespace dbmm
aBuffer.append( sMovedLib + "\n" );
}
- aBuffer.append( sal_Unicode( '\n' ) );
+ aBuffer.append( '\n' );
}
}