summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/rowfrm.hxx
diff options
context:
space:
mode:
authorRobinson Tryon <qubit@runcibility.com>2015-11-25 06:03:10 -0500
committerRobinson Tryon <qubit@runcibility.com>2015-11-25 06:07:38 -0500
commit49c2b9808df8a6b197dec666dfc0cda6321a4306 (patch)
tree045ef4b9b8dfdb06bfbe18cdf773d59f57d5552d /sw/source/core/inc/rowfrm.hxx
parent5470a365f25e5052b4dd74f76aa2196f0d70934b (diff)
bin/rename-sw-abbreviations.sh libreoffice-5-1-branch-point
This commit renames the most annoying abbreviations in Writer (and partially in the shared code too). Change-Id: I77e5134f42f25e3786afa36b7a505c7e3237a9e8
Diffstat (limited to 'sw/source/core/inc/rowfrm.hxx')
-rw-r--r--sw/source/core/inc/rowfrm.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index fdbfebfa0f7d..da689b48f0df 100644
--- a/sw/source/core/inc/rowfrm.hxx
+++ b/sw/source/core/inc/rowfrm.hxx
@@ -26,16 +26,16 @@
class SwTableLine;
class SwBorderAttrs;
-/// SwRowFrm is one table row in the document layout.
-class SwRowFrm: public SwLayoutFrm
+/// SwRowFrame is one table row in the document layout.
+class SwRowFrame: public SwLayoutFrame
{
virtual void Format( vcl::RenderContext* pRenderContext, const SwBorderAttrs *pAttrs = nullptr ) override;
/// Only change the Frame size, not the PrtArea SSize
- virtual SwTwips ShrinkFrm( SwTwips, bool bTst = false, bool bInfo = false ) override;
- virtual SwTwips GrowFrm ( SwTwips, bool bTst = false, bool bInfo = false ) override;
+ virtual SwTwips ShrinkFrame( SwTwips, bool bTst = false, bool bInfo = false ) override;
+ virtual SwTwips GrowFrame ( SwTwips, bool bTst = false, bool bInfo = false ) override;
const SwTableLine * m_pTabLine;
- SwRowFrm * m_pFollowRow;
+ SwRowFrame * m_pFollowRow;
// #i29550#
sal_uInt16 mnTopMarginForLowers;
sal_uInt16 mnBottomMarginForLowers;
@@ -46,14 +46,14 @@ class SwRowFrm: public SwLayoutFrm
bool m_bIsRowSpanLine;
virtual void DestroyImpl() override;
- virtual ~SwRowFrm();
+ virtual ~SwRowFrame();
protected:
virtual void MakeAll(vcl::RenderContext* pRenderContext) override;
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* ) override;
public:
- SwRowFrm( const SwTableLine &, SwFrm*, bool bInsertContent = true );
+ SwRowFrame( const SwTableLine &, SwFrame*, bool bInsertContent = true );
virtual void Cut() override;
@@ -63,7 +63,7 @@ public:
* been created; the same holds true for the Page at which the Flys
* are to be registered at.
*/
- void RegistFlys( SwPageFrm *pPage = nullptr );
+ void RegistFlys( SwPageFrame *pPage = nullptr );
const SwTableLine *GetTabLine() const { return m_pTabLine; }
@@ -73,8 +73,8 @@ public:
*/
void AdjustCells( const SwTwips nHeight, const bool bHeight );
- SwRowFrm* GetFollowRow() const { return m_pFollowRow; }
- void SetFollowRow( SwRowFrm* pNew ) { m_pFollowRow = pNew; }
+ SwRowFrame* GetFollowRow() const { return m_pFollowRow; }
+ void SetFollowRow( SwRowFrame* pNew ) { m_pFollowRow = pNew; }
// #i29550#
sal_uInt16 GetTopMarginForLowers() const { return mnTopMarginForLowers; }
@@ -101,7 +101,7 @@ public:
bool IsRowSpanLine() const { return m_bIsRowSpanLine; }
void SetRowSpanLine( bool bNew ) { m_bIsRowSpanLine = bNew; }
- DECL_FIXEDMEMPOOL_NEWDEL(SwRowFrm)
+ DECL_FIXEDMEMPOOL_NEWDEL(SwRowFrame)
};
#endif