summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/writerhelper.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/filter/ww8/writerhelper.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/filter/ww8/writerhelper.hxx')
-rw-r--r--sw/source/filter/ww8/writerhelper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/writerhelper.hxx b/sw/source/filter/ww8/writerhelper.hxx
index af98c92dbd0e..6c60d7760492 100644
--- a/sw/source/filter/ww8/writerhelper.hxx
+++ b/sw/source/filter/ww8/writerhelper.hxx
@@ -96,7 +96,7 @@ namespace ww8
public:
enum WriterSource {eTextBox, eGraphic, eOle, eDrawing, eFormControl,eBulletGrf};
private:
- const SwFrameFormat* mpFlyFrm;
+ const SwFrameFormat* mpFlyFrame;
SwPosition maPos;
Size maSize;
// #i43447# - Size of the frame in the layout.
@@ -110,7 +110,7 @@ namespace ww8
bool mbForBullet:1;
Graphic maGrf;
public:
- Frame(const SwFrameFormat &rFlyFrm, const SwPosition &rPos);
+ Frame(const SwFrameFormat &rFlyFrame, const SwPosition &rPos);
Frame(const Graphic&, const SwPosition &);
/** Get the writer SwFrameFormat that this object describes
@@ -118,7 +118,7 @@ namespace ww8
@return
The wrapped SwFrameFormat
*/
- const SwFrameFormat &GetFrameFormat() const { return *mpFlyFrm; }
+ const SwFrameFormat &GetFrameFormat() const { return *mpFlyFrame; }
/** Get the position this frame is anchored at
@@ -179,7 +179,7 @@ namespace ww8
if (mbForBullet && rOther.mbForBullet)
return (maGrf == rOther.maGrf);
else if ((!mbForBullet) && (!rOther.mbForBullet))
- return (mpFlyFrm == rOther.mpFlyFrm);
+ return (mpFlyFrame == rOther.mpFlyFrame);
return false;
}