diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-24 11:31:34 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-24 17:16:56 -0400 |
commit | 9ae7d6762b81adfdbd87034652cb2d4550a6dcf8 (patch) | |
tree | 8ac0a5a6ca5d6d498cc9e83da31bdfeaf7254d7e /editeng | |
parent | a69c486a3d210d390a57b4f4a6d633e45204112e (diff) |
Change of plan - we need to include feature attributes here as well.
Change-Id: I431b7ff79cffd5c9a7ff06f41a2fdd56bf2f968c
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editobj.cxx b/editeng/source/editeng/editobj.cxx index dbfd833f7402..c7db48569c0f 100644 --- a/editeng/source/editeng/editobj.cxx +++ b/editeng/source/editeng/editobj.cxx @@ -950,7 +950,7 @@ void EditTextObjectImpl::GetAllSectionAttributes( std::vector<editeng::SectionAt { const XEditAttribute& rAttr = rC.aAttribs[i]; const SfxPoolItem* pItem = rAttr.GetItem(); - if (!pItem || pItem->Which() == EE_FEATURE_FIELD) + if (!pItem) continue; size_t nStart = rAttr.GetStart(), nEnd = rAttr.GetEnd(); |