From c71aab14658325e5848cf404931b9863b3661573 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sat, 16 Mar 2013 09:27:27 +0100 Subject: fix after String->rtl::OUString conversion Change-Id: I8e9658cd4c3ea95658e3f3b214a51b381c3170b7 --- sc/source/ui/collab/sendfunc.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc') 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 -- cgit