summaryrefslogtreecommitdiff
path: root/sc/source/filter/lotus
diff options
context:
space:
mode:
authorGuillaume Poussel <gpoussel@gmail.com>2011-03-01 13:01:08 +0100
committerChristina Rossmanith <ChrRossmanith@web.de>2011-03-01 13:01:24 +0100
commitbd394abd2ef2157cd2f03c6c2e6801f7223b2a80 (patch)
treedbf4d3b076471fa643c5fdc999d1253baab23aac /sc/source/filter/lotus
parenteffc42d64e8e5ef24c42cf20b77ffc4b79576f89 (diff)
Remove bogus comments.
Diffstat (limited to 'sc/source/filter/lotus')
-rw-r--r--sc/source/filter/lotus/op.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/lotus/op.cxx b/sc/source/filter/lotus/op.cxx
index e92e52bfb5e9..1a6603e5a30c 100644
--- a/sc/source/filter/lotus/op.cxx
+++ b/sc/source/filter/lotus/op.cxx
@@ -238,10 +238,10 @@ void OP_NamedRange( SvStream& r, UINT16 /*n*/ )
if( isdigit( *cPuffer ) )
{ // erstes Zeichen im Namen eine Zahl -> 'A' vor Namen setzen
*pAnsi = 'A';
- strcpy( pAnsi + 1, cPuffer ); // #100211# - checked
+ strcpy( pAnsi + 1, cPuffer );
}
else
- strcpy( pAnsi, cPuffer ); // #100211# - checked
+ strcpy( pAnsi, cPuffer );
String aTmp( pAnsi, pLotusRoot->eCharsetQ );
@@ -273,10 +273,10 @@ void OP_SymphNamedRange( SvStream& r, UINT16 /*n*/ )
if( isdigit( *cPuffer ) )
{ // erstes Zeichen im Namen eine Zahl -> 'A' vor Namen setzen
*pAnsi = 'A';
- strcpy( pAnsi + 1, cPuffer ); // #100211# - checked
+ strcpy( pAnsi + 1, cPuffer );
}
else
- strcpy( pAnsi, cPuffer ); // #100211# - checked
+ strcpy( pAnsi, cPuffer );
String aTmp( pAnsi, pLotusRoot->eCharsetQ );
ScfTools::ConvertToScDefinedName( aTmp );
@@ -646,7 +646,7 @@ void OP_ApplyPatternArea123( SvStream& rStream )
{
std::map<UINT16, ScPatternAttr>::iterator loc = aLotusPatternPool.find( nData );
- // #126338# apparently, files with invalid index occur in the wild -> don't crash then
+ // apparently, files with invalid index occur in the wild -> don't crash then
DBG_ASSERT( loc != aLotusPatternPool.end(), "invalid format index" );
if ( loc != aLotusPatternPool.end() )
pDoc->ApplyPatternAreaTab( nCol, nRow, nCol + nColCount - 1, nRow + nRowCount - 1, static_cast< SCTAB >( nTab + i ), loc->second );