summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-14 09:49:17 +0200
committerNoel Grandin <noel@peralex.com>2013-08-15 09:11:35 +0200
commit55f2f0864e0fb45001477c5f16217aa8f55d790f (patch)
treefd1bc66b1b96e1271092e65626e6ac7f707c60f8 /sc/source
parent00f5fde6c4520afe08650c257b8d2c279635eb09 (diff)
convert include/svtools/parhtml.hxx from String to OUString
Change-Id: I20adfc9148b8afa7a59245349f233604bd9a1d2e
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/html/htmlpars.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index 6d93c4e94099..c47bf321a76d 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -1007,12 +1007,12 @@ void ScHTMLLayoutParser::TableDataOn( ImportInfo* pInfo )
{
case HTML_O_COLSPAN:
{
- pActEntry->nColOverlap = ( SCCOL ) rOption.GetString().ToInt32();
+ pActEntry->nColOverlap = ( SCCOL ) rOption.GetString().toInt32();
}
break;
case HTML_O_ROWSPAN:
{
- pActEntry->nRowOverlap = ( SCROW ) rOption.GetString().ToInt32();
+ pActEntry->nRowOverlap = ( SCROW ) rOption.GetString().toInt32();
}
break;
case HTML_O_ALIGN:
@@ -1995,7 +1995,7 @@ ScHTMLTable::ScHTMLTable( ScHTMLTable& rParentTable, const ImportInfo& rInfo, bo
switch( itr->GetToken() )
{
case HTML_O_BORDER:
- mbBorderOn = ((itr->GetString().Len() == 0) || (itr->GetNumber() != 0));
+ mbBorderOn = itr->GetString().isEmpty() || (itr->GetNumber() != 0);
break;
case HTML_O_ID:
maTableName = itr->GetString();
@@ -2221,10 +2221,10 @@ void ScHTMLTable::DataOn( const ImportInfo& rInfo )
switch (itr->GetToken())
{
case HTML_O_COLSPAN:
- aSpanSize.mnCols = static_cast<SCCOL>( getLimitedValue<sal_Int32>( itr->GetString().ToInt32(), 1, 256 ) );
+ aSpanSize.mnCols = static_cast<SCCOL>( getLimitedValue<sal_Int32>( itr->GetString().toInt32(), 1, 256 ) );
break;
case HTML_O_ROWSPAN:
- aSpanSize.mnRows = static_cast<SCROW>( getLimitedValue<sal_Int32>( itr->GetString().ToInt32(), 1, 256 ) );
+ aSpanSize.mnRows = static_cast<SCROW>( getLimitedValue<sal_Int32>( itr->GetString().toInt32(), 1, 256 ) );
break;
case HTML_O_SDVAL:
pValStr.reset(new OUString(itr->GetString()));