diff options
Diffstat (limited to 'svtools/source/table/tablegeometry.hxx')
-rw-r--r-- | svtools/source/table/tablegeometry.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/table/tablegeometry.hxx b/svtools/source/table/tablegeometry.hxx index c5943625e101..c6ffba2ce972 100644 --- a/svtools/source/table/tablegeometry.hxx +++ b/svtools/source/table/tablegeometry.hxx @@ -146,11 +146,11 @@ namespace svt { namespace table { } - inline Rectangle getRect() const { return m_aRow.getRect().GetIntersection( m_aCol.getRect() ); } - inline ColPos getColumn() const { return m_aCol.getCol(); } - inline bool isValid() const { return !getRect().IsEmpty(); } + Rectangle getRect() const { return m_aRow.getRect().GetIntersection( m_aCol.getRect() ); } + ColPos getColumn() const { return m_aCol.getCol(); } + bool isValid() const { return !getRect().IsEmpty(); } - inline bool moveRight() {return m_aCol.moveRight(); } + bool moveRight() {return m_aCol.moveRight(); } }; |