summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/recovery/storagetextstream.cxx
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/core/recovery/storagetextstream.cxx
parent531c2dc791098d3d335abc0ddd055780fe3b7f2a (diff)
remove unnecessary sal_Unicode casts in DBACCESS module
Change-Id: I4c4ab5d672e994b1e8e3beac027d3f4e8f700714
Diffstat (limited to 'dbaccess/source/core/recovery/storagetextstream.cxx')
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/recovery/storagetextstream.cxx b/dbaccess/source/core/recovery/storagetextstream.cxx
index c835c2134977..05822b651eee 100644
--- a/dbaccess/source/core/recovery/storagetextstream.cxx
+++ b/dbaccess/source/core/recovery/storagetextstream.cxx
@@ -60,7 +60,7 @@ namespace dbaccess
static const OUString& lcl_getLineFeed()
{
- static const OUString s_sLineFeed( sal_Unicode( '\n' ) );
+ static const OUString s_sLineFeed( '\n' );
return s_sLineFeed;
}
}