summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/drawingbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/drawingbase.hxx')
-rw-r--r--sc/source/filter/inc/drawingbase.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/source/filter/inc/drawingbase.hxx b/sc/source/filter/inc/drawingbase.hxx
index 8ca3bc38cca0..ba9784f2b849 100644
--- a/sc/source/filter/inc/drawingbase.hxx
+++ b/sc/source/filter/inc/drawingbase.hxx
@@ -29,8 +29,6 @@
namespace oox {
namespace xls {
-
-
/** Absolute position in a spreadsheet (in EMUs) independent from cells. */
struct AnchorPointModel : public ::oox::drawingml::EmuPoint
{
@@ -38,8 +36,6 @@ struct AnchorPointModel : public ::oox::drawingml::EmuPoint
inline bool isValid() const { return (X >= 0) && (Y >= 0); }
};
-
-
/** Absolute size in a spreadsheet (in EMUs). */
struct AnchorSizeModel : public ::oox::drawingml::EmuSize
{
@@ -47,8 +43,6 @@ struct AnchorSizeModel : public ::oox::drawingml::EmuSize
inline bool isValid() const { return (Width >= 0) && (Height >= 0); }
};
-
-
/** Position in spreadsheet (cell position and offset inside cell). */
struct CellAnchorModel
{
@@ -61,8 +55,6 @@ struct CellAnchorModel
inline bool isValid() const { return (mnCol >= 0) && (mnRow >= 0); }
};
-
-
/** Application-specific client data of a shape. */
struct AnchorClientDataModel
{
@@ -72,8 +64,6 @@ struct AnchorClientDataModel
explicit AnchorClientDataModel();
};
-
-
/** Contains the position of a shape in the spreadsheet. Supports different
shape anchor modes (absolute, one-cell, two-cell). */
class ShapeAnchor : public WorksheetHelper
@@ -134,8 +124,6 @@ private:
AnchorType meEditAs; /// Anchor mode as shown in the UI.
};
-
-
} // namespace xls
} // namespace oox