summaryrefslogtreecommitdiff
path: root/sc/source/filter/html
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/html
parenteffc42d64e8e5ef24c42cf20b77ffc4b79576f89 (diff)
Remove bogus comments.
Diffstat (limited to 'sc/source/filter/html')
-rw-r--r--sc/source/filter/html/htmlexp.cxx14
-rw-r--r--sc/source/filter/html/htmlpars.cxx8
2 files changed, 11 insertions, 11 deletions
diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx
index c9963b9c519e..63c94ca764d0 100644
--- a/sc/source/filter/html/htmlexp.cxx
+++ b/sc/source/filter/html/htmlexp.cxx
@@ -207,9 +207,9 @@ void lcl_AppendHTMLColorTripel( ByteString& rStr, const Color& rColor )
sal_Char* p = buf;
rStr += "\"#";
- p += sprintf( p, "%02X", rColor.GetRed() ); // #100211# - checked
- p += sprintf( p, "%02X", rColor.GetGreen() ); // #100211# - checked
- p += sprintf( p, "%02X", rColor.GetBlue() ); // #100211# - checked
+ p += sprintf( p, "%02X", rColor.GetRed() );
+ p += sprintf( p, "%02X", rColor.GetGreen() );
+ p += sprintf( p, "%02X", rColor.GetBlue() );
rStr += buf;
rStr += '\"';
}
@@ -233,7 +233,7 @@ ScHTMLExport::ScHTMLExport( SvStream& rStrmP, const String& rBaseURL, ScDocument
bTableDataWidth( TRUE ),
bTableDataHeight( TRUE )
{
- strcpy( sIndent, sIndentSource ); // #100211# - checked
+ strcpy( sIndent, sIndentSource );
sIndent[0] = 0;
// set HTML configuration
@@ -945,14 +945,14 @@ void ScHTMLExport::WriteCell( SCCOL nCol, SCROW nRow, SCTAB nTab )
Color aBgColor;
if ( rBrushItem.GetColor().GetTransparency() == 255 )
- aBgColor = aHTMLStyle.aBackgroundColor; // #55121# keine ungewollte Hintergrundfarbe
+ aBgColor = aHTMLStyle.aBackgroundColor; // keine ungewollte Hintergrundfarbe
else
aBgColor = rBrushItem.GetColor();
BOOL bBold = ( WEIGHT_BOLD <= rWeightItem.GetWeight() );
BOOL bItalic = ( ITALIC_NONE != rPostureItem.GetPosture() );
BOOL bUnderline = ( UNDERLINE_NONE != rUnderlineItem.GetLineStyle() );
- BOOL bSetFontColor = ( COL_AUTO != rColorItem.GetValue().GetColor() ); // #97650# default is AUTO now
+ BOOL bSetFontColor = ( COL_AUTO != rColorItem.GetValue().GetColor() ); // default is AUTO now
BOOL bSetFontName = ( aHTMLStyle.aFontFamilyName != rFontItem.GetFamilyName() );
USHORT nSetFontSizeNumber = 0;
UINT32 nFontHeight = rFontHeightItem.GetHeight();
@@ -1106,7 +1106,7 @@ void ScHTMLExport::WriteCell( SCCOL nCol, SCROW nRow, SCTAB nTab )
{
if ( !aStrOut.Len() )
{
- TAG_ON( OOO_STRING_SVTOOLS_HTML_linebreak ); // #42573# keine komplett leere Zelle
+ TAG_ON( OOO_STRING_SVTOOLS_HTML_linebreak ); // keine komplett leere Zelle
}
else
{
diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index 1c8b32d3060a..031110354bcd 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -561,7 +561,7 @@ void ScHTMLLayoutParser::SetWidths()
}
else
{ // einige mit einige ohne Width
- // #36350# wieso eigentlich kein pE ?!?
+ // wieso eigentlich kein pE ?!?
if ( nFirstTableCell < maList.size() )
{
USHORT* pOffsets = new USHORT[ nColsPerRow+1 ];
@@ -781,7 +781,7 @@ IMPL_LINK( ScHTMLLayoutParser, HTMLImportHdl, ImportInfo*, pInfo )
if ( pInfo->aSelection.nEndPos )
{
// If text remains: create paragraph, without calling CloseEntry().
- if( bInCell ) // #108269# ...but only in opened table cells.
+ if( bInCell ) // ...but only in opened table cells.
{
bInCell = FALSE;
NextRow( pInfo );
@@ -2097,7 +2097,7 @@ void ScHTMLTable::BodyOn( const ImportInfo& rInfo )
bool bPushed = PushEntry( rInfo );
if( !mpParentTable )
{
- // #108269# do not start new row, if nothing (no title) precedes the body.
+ // do not start new row, if nothing (no title) precedes the body.
if( bPushed || !mbRowOn )
ImplRowOn();
if( bPushed || !mbDataOn )
@@ -2674,7 +2674,7 @@ void ScHTMLTable::RecalcDocPos( const ScHTMLPos& rBasePos )
}
else
{
- // #111667# fill up incomplete entry lists
+ // fill up incomplete entry lists
SCROW nFirstUnusedRow = aCellDocPos.mnRow + aCellDocSize.mnRows;
while( aEntryDocPos.mnRow < nFirstUnusedRow )
{