summaryrefslogtreecommitdiff
path: root/sc/source/filter/html
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:58:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-03 11:04:44 -0600
commit84862db95a5e22b9ef89baa2a8a5deeffefbdef6 (patch)
tree2682cf093a4a5d513bdedaee8298525c9b57ef6f /sc/source/filter/html
parent7801c94bffdabe669601d23e86f2f2a41447902d (diff)
Remove visual noise from sc
Conflicts: sc/source/ui/inc/docfunc.hxx Change-Id: I9314437ed3dd60e84d28c08ac0a2d1ed7bd1daf8 Reviewed-on: https://gerrit.libreoffice.org/8301 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/filter/html')
-rw-r--r--sc/source/filter/html/htmlexp.cxx10
-rw-r--r--sc/source/filter/html/htmlpars.cxx20
2 files changed, 15 insertions, 15 deletions
diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx
index 01faa7c2dd8c..269f924096fc 100644
--- a/sc/source/filter/html/htmlexp.cxx
+++ b/sc/source/filter/html/htmlexp.cxx
@@ -86,7 +86,7 @@
using ::editeng::SvxBorderLine;
using namespace ::com::sun::star;
-//========================================================================
+
const static sal_Char sMyBegComment[] = "<!-- ";
const static sal_Char sMyEndComment[] = " -->";
@@ -110,9 +110,9 @@ const sal_uInt16 ScHTMLExport::nCellSpacing = 0;
const sal_Char ScHTMLExport::sIndentSource[nIndentMax+1] =
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
-//========================================================================
+
// Macros for HTML export
-//========================================================================
+
#define TAG_ON( tag ) HTMLOutFuncs::Out_AsciiTag( rStrm, tag )
#define TAG_OFF( tag ) HTMLOutFuncs::Out_AsciiTag( rStrm, tag, false )
#define OUT_STR( str ) HTMLOutFuncs::Out_String( rStrm, str, eDestEnc, &aNonConvertibleChars )
@@ -130,7 +130,7 @@ const sal_Char ScHTMLExport::sIndentSource[nIndentMax+1] =
-//========================================================================
+
FltError ScFormatFilterPluginImpl::ScExportHTML( SvStream& rStrm, const OUString& rBaseURL, ScDocument* pDoc,
const ScRange& rRange, const rtl_TextEncoding /*eNach*/, bool bAll,
@@ -206,7 +206,7 @@ static OString lcl_makeHTMLColorTriplet(const Color& rColor)
return aStr.makeStringAndClear();
}
-//////////////////////////////////////////////////////////////////////////////
+
ScHTMLExport::ScHTMLExport( SvStream& rStrmP, const OUString& rBaseURL, ScDocument* pDocP,
const ScRange& rRangeP,
diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index d50f35dba36b..e8f69e926e73 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -185,9 +185,9 @@ void ScHTMLStyles::insertProp(
pProps->insert(PropsType::value_type(aProp, aValue));
}
-// ============================================================================
+
// BASE class for HTML parser classes
-// ============================================================================
+
ScHTMLParser::ScHTMLParser( EditEngine* pEditEngine, ScDocument* pDoc ) :
ScEEParser( pEditEngine ),
@@ -212,7 +212,7 @@ ScDocument& ScHTMLParser::GetDoc()
return *mpDoc;
}
-// ============================================================================
+
ScHTMLLayoutParser::ScHTMLLayoutParser(
EditEngine* pEditP, const OUString& rBaseURL, const Size& aPageSizeP,
@@ -1769,9 +1769,9 @@ void ScHTMLLayoutParser::ProcToken( ImportInfo* pInfo )
-// ============================================================================
+
// HTML DATA QUERY PARSER
-// ============================================================================
+
template< typename Type >
inline Type getLimitedValue( const Type& rValue, const Type& rMin, const Type& rMax )
@@ -1829,7 +1829,7 @@ void ScHTMLEntry::Strip( const EditEngine& rEditEngine )
}
}
-// ============================================================================
+
/** A map of ScHTMLTable objects.
@@ -1955,7 +1955,7 @@ ScHTMLTableIterator::ScHTMLTableIterator( const ScHTMLTableMap* pTableMap ) :
}
}
-// ============================================================================
+
ScHTMLTableAutoId::ScHTMLTableAutoId( ScHTMLTableId& rnUnusedId ) :
mnTableId( rnUnusedId ),
@@ -2889,7 +2889,7 @@ void ScHTMLTable::RecalcDocPos( const ScHTMLPos& rBasePos )
}
}
-// ============================================================================
+
ScHTMLGlobalTable::ScHTMLGlobalTable(
SfxItemPool& rPool,
@@ -2916,7 +2916,7 @@ void ScHTMLGlobalTable::Recalc()
RecalcDocPos( GetDocPos() );
}
-// ============================================================================
+
ScHTMLQueryParser::ScHTMLQueryParser( EditEngine* pEditEngine, ScDocument* pDoc ) :
ScHTMLParser( pEditEngine, pDoc ),
@@ -3313,6 +3313,6 @@ IMPL_LINK( ScHTMLQueryParser, HTMLImportHdl, const ImportInfo*, pInfo )
return 0;
}
-// ============================================================================
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */