summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/colrowba.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-02-22 18:55:56 +0100
committerMichael Stahl <mstahl@redhat.com>2013-02-22 18:55:56 +0100
commitad830cacb72ef0a2062706dc80c253f0bcf65cb7 (patch)
tree3b6976f73249489c52d95b910269c936deefa62e /sc/source/ui/view/colrowba.cxx
parent0041d05b560e878ccd28d05268ba73394f681b59 (diff)
sc: insert a temporary String conversion until ScColToAlpha is converted
Change-Id: I35494ccfeba77b173a2d227d1bd2235e81aa2d9b
Diffstat (limited to 'sc/source/ui/view/colrowba.cxx')
-rw-r--r--sc/source/ui/view/colrowba.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/colrowba.cxx b/sc/source/ui/view/colrowba.cxx
index b4ca85e6bdab..fda9c55c43d3 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) );
}