diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-13 16:07:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-14 08:35:15 +0200 |
commit | 43c1a3a904e889e4b8660fa28d4f4479c0f267ae (patch) | |
tree | afe2f98d7adae62268fc470052bad420b15132c1 /compilerplugins/clang | |
parent | cd66852f6dd08631a25d15a1527a647e69ab8ce3 (diff) |
SvxCharSetColorItem can be removed
and just use SvxColorItem in its stead, all of it's special
functionality has been removed over time
Change-Id: I61a4d1fb92d9dccbdfc5bbb6d1a41692b83eb320
Reviewed-on: https://gerrit.libreoffice.org/58938
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang')
-rw-r--r-- | compilerplugins/clang/sfxpoolitem.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compilerplugins/clang/sfxpoolitem.cxx b/compilerplugins/clang/sfxpoolitem.cxx index f41a006f30b0..c64e35a33790 100644 --- a/compilerplugins/clang/sfxpoolitem.cxx +++ b/compilerplugins/clang/sfxpoolitem.cxx @@ -111,10 +111,6 @@ bool SfxPoolItem::VisitCXXRecordDecl(const CXXRecordDecl* decl) if (tc.Class("SfxEnumItem").GlobalNamespace() || tc.Class("SfxAllEnumItem").GlobalNamespace()) return true; - // the new field is only used for reading and writing to storage - if (tc.Class("SvxCharSetColorItem").GlobalNamespace()) - return true; - for (auto it = decl->method_begin(); it != decl->method_end(); ++it) { if ( endsWith((*it)->getQualifiedNameAsString(), "::operator==") ) return true; |