diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-27 14:52:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-03 09:26:35 +0200 |
commit | 8cfa7f4dc00f3dd37e57917ef25c806b0e9e6e73 (patch) | |
tree | 35408cf40d7bf3f93ff7405695f48796abc6089b /bridges | |
parent | 93f1c3665fcdc31c36078f179ac37fd69d3ebb00 (diff) |
add more append methods to *StringBuffer
which performs the append without needing the creation of a temporary
*String
Change-Id: If9ad3222275f26659db2e7df8d34f068977c4d17
Reviewed-on: https://gerrit.libreoffice.org/69826
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_intel/except.cxx | 4 | ||||
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx index 4f761ef3ed20..9f7bc81d71d1 100644 --- a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx @@ -52,7 +52,7 @@ static inline OUString toUNOname( OUString const & rRTTIname ) throw () while (nPos > 0) { sal_Int32 n = aStr.lastIndexOf( '@', nPos ); - aRet.append( aStr.copy( n +1, nPos -n -1 ) ); + aRet.append( aStr, n +1, nPos -n -1 ); if (n >= 0) { aRet.append( '.' ); @@ -70,7 +70,7 @@ static inline OUString toRTTIname( OUString const & rUNOname ) throw () while (nPos > 0) { sal_Int32 n = rUNOname.lastIndexOf( '.', nPos ); - aRet.append( rUNOname.copy( n +1, nPos -n -1 ) ); + aRet.append( rUNOname, n +1, nPos -n -1 ); aRet.append( '@' ); nPos = n; } diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx index 385f5f5cb9ed..0961f618aada 100644 --- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx @@ -275,7 +275,7 @@ static OUString toUNOname( while (nPos > 0) { sal_Int32 n = aStr.lastIndexOf( '@', nPos ); - aRet.append( aStr.copy( n +1, nPos -n -1 ) ); + aRet.append( aStr, n +1, nPos -n -1 ); if (n >= 0) { aRet.append( '.' ); @@ -295,7 +295,7 @@ static OUString toRTTIname( while (nPos > 0) { sal_Int32 n = rUNOname.lastIndexOf( '.', nPos ); - aRet.append( rUNOname.copy( n +1, nPos -n -1 ) ); + aRet.append( rUNOname, n +1, nPos -n -1 ); aRet.append( '@' ); nPos = n; } |