summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/addressconverter.hxx
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/inc/addressconverter.hxx
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/inc/addressconverter.hxx')
-rw-r--r--sc/source/filter/inc/addressconverter.hxx38
1 files changed, 19 insertions, 19 deletions
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