summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/misc/dp_platform.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-20 14:23:33 +0200
committerNoel Grandin <noel@peralex.com>2014-01-07 09:43:37 +0200
commit82625bb98e256b83351328d3bf2a14e3dd244eef (patch)
tree9b661850ae5df9ea27fcac063cfe61862046c8d1 /desktop/source/deployment/misc/dp_platform.cxx
parent347af397cafa97cfa7d5027f83fff784ca04a397 (diff)
remove unnecessary sal_Unicode casts in OUStringBuffer::append calls
Convert code like: buf.append( static_cast<sal_Unicode>('!') ); to: buf.append( '!' ); Change-Id: Iacb03a61de65a895540940953b49620677b3d051
Diffstat (limited to 'desktop/source/deployment/misc/dp_platform.cxx')
-rw-r--r--desktop/source/deployment/misc/dp_platform.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/misc/dp_platform.cxx b/desktop/source/deployment/misc/dp_platform.cxx
index 830f865360ae..95ff81a531ec 100644
--- a/desktop/source/deployment/misc/dp_platform.cxx
+++ b/desktop/source/deployment/misc/dp_platform.cxx
@@ -94,7 +94,7 @@ namespace
const OUString operator () () {
OUStringBuffer buf;
buf.append( StrOperatingSystem::get() );
- buf.append( static_cast<sal_Unicode>('_') );
+ buf.append( '_' );
buf.append( StrCPU::get() );
return buf.makeStringAndClear();
}