diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-07 10:04:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-07 10:04:50 +0200 |
commit | 66e173eb4456639ecd2e75fbb23a557a5b7c5932 (patch) | |
tree | a4d734059c1502930002e150e75fff2ed10be4f4 /svl | |
parent | 82625bb98e256b83351328d3bf2a14e3dd244eef (diff) |
Fix typo in my commit
Fix typo in my commit 82625bb98e256b83351328d3bf2a14e3dd244eef
"remove unnecessary sal_Unicode casts in OUStringBuffer::append calls"
Change-Id: I593c6a8ce5be3d4e2783acd3800626d7eb9a0480
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/misc/urihelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/misc/urihelper.cxx b/svl/source/misc/urihelper.cxx index c20d4766ad9b..402e90b8f4b2 100644 --- a/svl/source/misc/urihelper.cxx +++ b/svl/source/misc/urihelper.cxx @@ -243,7 +243,7 @@ OUString normalize( buf.append(ref->getPathSegment(j)); } if (ref->hasQuery()) { - buf.append'?'); + buf.append('?'); buf.append(ref->getQuery()); } if (ref->hasFragment()) { |