diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-10-03 16:54:35 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-10-03 18:28:11 +0200 |
commit | 72da443f876a59a8107e26a277a8992838ea9231 (patch) | |
tree | e7dc775d65bae7ea72ce5d6d810e563faec69b55 /sw/inc | |
parent | 105ddd124ad4cff3109d2e25c8035402446ac0db (diff) |
isDrawingLayerAttribute() maybe could return true for all drawinglayer attrs
Change-Id: I83013ecd45b32100bf14e004899561a57a087aef
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/hintids.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/hintids.hxx b/sw/inc/hintids.hxx index 687727679506..76d52020ff8c 100644 --- a/sw/inc/hintids.hxx +++ b/sw/inc/hintids.hxx @@ -403,7 +403,7 @@ inline bool isFRMATR(const sal_uInt16 nWhich) } inline bool isDrawingLayerAttribute(const sal_uInt16 nWhich) //UUUU { - return (XATTR_FILL_FIRST <= nWhich) && (XATTR_FILL_LAST >= nWhich); + return (XATTR_START <= nWhich) && (XATTR_END > nWhich); } inline bool isGRFATR(const sal_uInt16 nWhich) { |