summaryrefslogtreecommitdiffstats
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-08-13 16:07:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-08-14 08:35:15 +0200
commit43c1a3a904e889e4b8660fa28d4f4479c0f267ae (patch)
treeafe2f98d7adae62268fc470052bad420b15132c1 /compilerplugins
parentcreate appendCopy method in OUStringBuffer (diff)
downloadcore-43c1a3a904e889e4b8660fa28d4f4479c0f267ae.tar.gz
core-43c1a3a904e889e4b8660fa28d4f4479c0f267ae.zip
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')
-rw-r--r--compilerplugins/clang/sfxpoolitem.cxx4
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;