[Libreoffice-commits] .: sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Tue Aug 16 21:53:11 PDT 2011
sc/source/filter/excel/xltools.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit e755e7a7e29600a137387a1b541e22f537c0e9c0
Author: Kohei Yoshida <kohei.yoshida at suse.com>
Date: Wed Aug 17 00:53:20 2011 -0400
Remove ambiguity.
diff --git a/sc/source/filter/excel/xltools.cxx b/sc/source/filter/excel/xltools.cxx
index 8a15e68..4cca4ef 100644
--- a/sc/source/filter/excel/xltools.cxx
+++ b/sc/source/filter/excel/xltools.cxx
@@ -673,9 +673,9 @@ rtl::OUString XclTools::GetCondFormatStyleName( SCTAB nScTab, sal_Int32 nFormat,
{
rtl::OUStringBuffer aBuf(maCFStyleNamePrefix1);
aBuf.append(static_cast<sal_Int32>(nScTab+1));
- aBuf.append('_');
+ aBuf.append(sal_Unicode('_'));
aBuf.append(static_cast<sal_Int32>(nFormat+1));
- aBuf.append('_');
+ aBuf.append(sal_Unicode('_'));
aBuf.append(static_cast<sal_Int32>(nCondition+1));
return aBuf.makeStringAndClear();
}
More information about the Libreoffice-commits
mailing list