remove redundant calls to OUString constructor

Change code like this:
  aStr = OUString("xxxx");
into this:
  aStr = "xxxx";

Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
This commit is contained in:
Noel Grandin
2013-10-25 17:17:50 +02:00
parent 57c2de08dd
commit aeb41c9b9b
101 changed files with 360 additions and 468 deletions

View File

@@ -770,9 +770,8 @@ namespace cppcanvas
#if OSL_DEBUG_LEVEL > 1
mfStream.Seek(0);
static sal_Int32 emfp_debug_stream_number = 0;
OUString emfp_debug_filename("/tmp/emf-embedded-stream");
emfp_debug_filename += OUString::number(emfp_debug_stream_number++);
emfp_debug_filename += OUString(".emf");
OUString emfp_debug_filename = "/tmp/emf-embedded-stream" +
OUString::number(emfp_debug_stream_number++) + ".emf";
SvFileStream file( emfp_debug_filename, STREAM_WRITE | STREAM_TRUNC );