[Libreoffice-commits] core.git: sc/source

David Tardon dtardon at redhat.com
Sat Mar 16 22:06:24 PDT 2013


 sc/source/ui/collab/sendfunc.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c71aab14658325e5848cf404931b9863b3661573
Author: David Tardon <dtardon at redhat.com>
Date:   Sat Mar 16 09:27:27 2013 +0100

    fix after String->rtl::OUString conversion
    
    Change-Id: I8e9658cd4c3ea95658e3f3b214a51b381c3170b7

diff --git a/sc/source/ui/collab/sendfunc.hxx b/sc/source/ui/collab/sendfunc.hxx
index f7fcca9..ba747eb 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


More information about the Libreoffice-commits mailing list