From 84862db95a5e22b9ef89baa2a8a5deeffefbdef6 Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Tue, 25 Feb 2014 19:58:48 +0100 Subject: Remove visual noise from sc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Conflicts: sc/source/ui/inc/docfunc.hxx Change-Id: I9314437ed3dd60e84d28c08ac0a2d1ed7bd1daf8 Reviewed-on: https://gerrit.libreoffice.org/8301 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sc/source/filter/inc/addressconverter.hxx | 38 +++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'sc/source/filter/inc/addressconverter.hxx') diff --git a/sc/source/filter/inc/addressconverter.hxx b/sc/source/filter/inc/addressconverter.hxx index 36f859948092..7691557aaf78 100644 --- a/sc/source/filter/inc/addressconverter.hxx +++ b/sc/source/filter/inc/addressconverter.hxx @@ -30,8 +30,8 @@ namespace xls { class BiffInputStream; -// ============================================================================ -// ============================================================================ + + /** A vector of com.sun.star.table.CellRangeAddress elements and additional functionality. */ @@ -45,7 +45,7 @@ public: getBaseAddress() const; }; -// ============================================================================ + /** A 2D cell address struct for binary filters. */ struct BinAddress @@ -64,7 +64,7 @@ struct BinAddress void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false ); }; -// ---------------------------------------------------------------------------- + inline bool operator==( const BinAddress& rL, const BinAddress& rR ) { @@ -88,7 +88,7 @@ inline BiffInputStream& operator>>( BiffInputStream& rStrm, BinAddress& orPos ) return rStrm; } -// ============================================================================ + /** A 2D cell range address struct for binary filters. */ struct BinRange @@ -121,7 +121,7 @@ struct BinRange void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false ); }; -// ---------------------------------------------------------------------------- + inline bool operator==( const BinRange& rL, const BinRange& rR ) { @@ -145,7 +145,7 @@ inline BiffInputStream& operator>>( BiffInputStream& rStrm, BinRange& orRange ) return rStrm; } -// ============================================================================ + /** A 2D cell range address list for binary filters. */ class BinRangeList : public ::std::vector< BinRange > @@ -156,7 +156,7 @@ public: void read( SequenceInputStream& rStrm ); }; -// ---------------------------------------------------------------------------- + inline SequenceInputStream& operator>>( SequenceInputStream& rStrm, BinRangeList& orRanges ) { @@ -164,7 +164,7 @@ inline SequenceInputStream& operator>>( SequenceInputStream& rStrm, BinRangeList return rStrm; } -// ============================================================================ + /** Different target types that can be encoded in a BIFF URL. */ enum BiffTargetType @@ -176,8 +176,8 @@ enum BiffTargetType BIFF_TARGETTYPE_UNKNOWN /// Unknown/unsupported target type. }; -// ============================================================================ -// ============================================================================ + + /** Converter for cell addresses and cell ranges for OOXML and BIFF filters. */ @@ -186,7 +186,7 @@ class AddressConverter : public WorkbookHelper public: explicit AddressConverter( const WorkbookHelper& rHelper ); - // ------------------------------------------------------------------------ + /** Tries to parse the passed string for a 2d cell address in A1 notation. @@ -241,7 +241,7 @@ public: sal_Int32 nStart = 0, sal_Int32 nLength = SAL_MAX_INT32 ); - // ------------------------------------------------------------------------ + /** Returns the biggest valid cell address in the own Calc document. */ inline const ::com::sun::star::table::CellAddress& @@ -264,7 +264,7 @@ public: /** Returns the sheet overflow status. */ inline bool isTabOverflow() const { return mbTabOverflow; } - // ------------------------------------------------------------------------ + /** Checks if the passed column index is valid. @@ -293,7 +293,7 @@ public: */ bool checkTab( sal_Int16 nSheet, bool bTrackOverflow ); - // ------------------------------------------------------------------------ + /** Checks the passed cell address if it fits into the spreadsheet limits. @@ -394,7 +394,7 @@ public: sal_Int16 nSheet, bool bTrackOverflow ); - // ------------------------------------------------------------------------ + /** Checks the passed cell range if it fits into the spreadsheet limits. @@ -528,7 +528,7 @@ public: sal_Int16 nSheet, bool bAllowOverflow, bool bTrackOverflow ); - // ------------------------------------------------------------------------ + /** Tries to restrict the passed cell range list to current sheet limits. @@ -583,7 +583,7 @@ public: sal_Int16 nSheet, bool bTrackOverflow ); - // ------------------------------------------------------------------------ + private: void initializeMaxPos( sal_Int16 nMaxXlsTab, sal_Int32 nMaxXlsCol, sal_Int32 nMaxXlsRow ); @@ -613,7 +613,7 @@ private: bool mbTabOverflow; /// Flag for "tables overflow". }; -// ============================================================================ + } // namespace xls } // namespace oox -- cgit