diff options
author | Chr. Rossmanith <ChrRossmanith@gmx.de> | 2014-02-17 16:01:35 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-02-18 07:29:55 +0000 |
commit | 5060d3888edba2be753eefbd4d23e1a2abd940ff (patch) | |
tree | 04d89f541b41121d762c3d0a1f8573aa2684e03d /sw/inc | |
parent | 736b3970e7a49e0b11997602703852a7a5c0fdc3 (diff) |
Replace GrafikArrived with GraphicArrived
Change-Id: I626e0039a01e62eeae994b1c423cc6f8aa359c06
Reviewed-on: https://gerrit.libreoffice.org/8087
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ndgrf.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/ndgrf.hxx b/sw/inc/ndgrf.hxx index a2687d6fecd4..ba1d52806474 100644 --- a/sw/inc/ndgrf.hxx +++ b/sw/inc/ndgrf.hxx @@ -45,7 +45,7 @@ class SW_DLLPUBLIC SwGrfNode: public SwNoTxtNode sal_Bool bTransparentFlagValid :1; sal_Bool bInSwapIn :1; - sal_Bool bGrafikArrived :1; + sal_Bool bGraphicArrived :1; sal_Bool bChgTwipSize :1; sal_Bool bChgTwipSizeFromPixel :1; sal_Bool bLoadLowResGrf :1; @@ -150,8 +150,8 @@ public: inline sal_Bool IsChgTwipSizeFromPixel() const { return bChgTwipSizeFromPixel; } inline void SetChgTwipSize( sal_Bool b, sal_Bool bFromPx=sal_False ) { bChgTwipSize = b; bChgTwipSizeFromPixel = bFromPx; } - inline sal_Bool IsGrafikArrived() const { return bGrafikArrived; } - inline void SetGrafikArrived( sal_Bool b ) { bGrafikArrived = b; } + inline sal_Bool IsGraphicArrived() const { return bGraphicArrived; } + inline void SetGraphicArrived( sal_Bool b ) { bGraphicArrived = b; } inline sal_Bool IsFrameInPaint() const { return bFrameInPaint; } inline void SetFrameInPaint( sal_Bool b ) { bFrameInPaint = b; } |