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

Michael Stahl mstahl at redhat.com
Fri Feb 22 09:59:05 PST 2013


 sc/source/ui/view/colrowba.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad830cacb72ef0a2062706dc80c253f0bcf65cb7
Author: Michael Stahl <mstahl at redhat.com>
Date:   Fri Feb 22 18:55:56 2013 +0100

    sc: insert a temporary String conversion until ScColToAlpha is converted
    
    Change-Id: I35494ccfeba77b173a2d227d1bd2235e81aa2d9b

diff --git a/sc/source/ui/view/colrowba.cxx b/sc/source/ui/view/colrowba.cxx
index b4ca85e..fda9c55 100644
--- a/sc/source/ui/view/colrowba.cxx
+++ b/sc/source/ui/view/colrowba.cxx
@@ -92,7 +92,7 @@ sal_uInt16 ScColBar::GetEntrySize( SCCOLROW nEntryNo )
 String ScColBar::GetEntryText( SCCOLROW nEntryNo )
 {
     return UseNumericHeader()
-        ? OUString::number( nEntryNo + 1 )
+        ? String(OUString::number(nEntryNo + 1)) //FIXME remove String again
         : ScColToAlpha( static_cast<SCCOL>(nEntryNo) );
 }
 


More information about the Libreoffice-commits mailing list