diff options
author | David Tardon <dtardon@redhat.com> | 2013-03-16 09:27:27 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-03-17 06:04:37 +0100 |
commit | c71aab14658325e5848cf404931b9863b3661573 (patch) | |
tree | 0c2d95a4b4a37feb4b928c2544d782076dab9fc9 /sc | |
parent | 92e7d266419846a0dbbcd177161d7e29d95d4319 (diff) |
fix after String->rtl::OUString conversion
Change-Id: I8e9658cd4c3ea95658e3f3b214a51b381c3170b7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/collab/sendfunc.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/collab/sendfunc.hxx b/sc/source/ui/collab/sendfunc.hxx index f7fcca9b81ed..ba747eb2cfcb 100644 --- a/sc/source/ui/collab/sendfunc.hxx +++ b/sc/source/ui/collab/sendfunc.hxx @@ -52,7 +52,7 @@ public: if ( rStr.indexOf( sal_Unicode( '"' ) ) >= 0 || rStr.indexOf( sal_Unicode( ';' ) ) >= 0 ) { - String aQuoted( rStr ); + rtl::OUString aQuoted( rStr ); ScGlobal::AddQuotes( aQuoted, sal_Unicode( '"' ) ); aMessage.append( aQuoted ); } @@ -166,7 +166,7 @@ public: { if (n > 0 && (size_t)n < getArgCount() ) { - String aUStr( maArgs[ n ] ); + rtl::OUString aUStr( maArgs[ n ] ); ScGlobal::EraseQuotes( aUStr ); return aUStr; } else |