diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:15 +0200 |
commit | 6afc1202aeab1d25489eeca5f8c78737f707b113 (patch) | |
tree | 8fa914a8d3fe27f90c29135bcae5ef4192ac7fb9 /xmlhelp | |
parent | 38d0db29bb9f51a4e09893782f0f37d76d557305 (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I816d2205dcd01d4566054da33439e943a3c6348b
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/treeview/tvread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx index 815528fe862a..d2b7e58655b7 100644 --- a/xmlhelp/source/treeview/tvread.cxx +++ b/xmlhelp/source/treeview/tvread.cxx @@ -139,7 +139,7 @@ namespace treeview { } OUStringBuffer strBuff( 22 + len + id.getLength() ); - strBuff.appendAscii( + strBuff.append( "vnd.sun.star.help://" ).append(id); |