diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:00:20 +0200 |
commit | 36fe72f915c44ff026514352ff8378178f437e66 (patch) | |
tree | 8a3a94c5593cf8f6f96f308a6da20a78c1b4df38 /vcl/osx | |
parent | 6afc1202aeab1d25489eeca5f8c78737f707b113 (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I69c2c27af718b1d3ff35348a69d8b57914e5ae82
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/printaccessoryview.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/printaccessoryview.mm b/vcl/osx/printaccessoryview.mm index 7f7c82699189..d03d4f403012 100644 --- a/vcl/osx/printaccessoryview.mm +++ b/vcl/osx/printaccessoryview.mm @@ -367,7 +367,7 @@ class ControllerProperties // add a label sal_Int32 nPages = mpController->getFilteredPageCount(); rtl::OUStringBuffer aBuf( 16 ); - aBuf.appendAscii( "/ " ); + aBuf.append( "/ " ); aBuf.append( rtl::OUString::number( nPages ) ); NSString* pText = CreateNSString( aBuf.makeStringAndClear() ); |