summaryrefslogtreecommitdiff
path: root/include/editeng
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 /include/editeng
parentcd66852f6dd08631a25d15a1527a647e69ab8ce3 (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 'include/editeng')
-rw-r--r--include/editeng/charsetcoloritem.hxx50
1 files changed, 0 insertions, 50 deletions
diff --git a/include/editeng/charsetcoloritem.hxx b/include/editeng/charsetcoloritem.hxx
deleted file mode 100644
index 71f57e9ec611..000000000000
--- a/include/editeng/charsetcoloritem.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef INCLUDED_EDITENG_CHARSETCOLORITEM_HXX
-#define INCLUDED_EDITENG_CHARSETCOLORITEM_HXX
-
-#include <editeng/colritem.hxx>
-#include <editeng/editengdllapi.h>
-#include <rtl/ustring.hxx>
-
-// class SvxCharSetColorItem ---------------------------------------------
-
-/* [Description]
-
- Is only needed internally in the reader of Writer.
-*/
-
-class EDITENG_DLLPUBLIC SvxCharSetColorItem : public SvxColorItem
-{
-public:
- explicit SvxCharSetColorItem( const sal_uInt16 nId );
- SvxCharSetColorItem( const Color& aColor, const sal_uInt16 nId );
-
- // "pure virtual Methods" from SfxPoolItem
- virtual bool GetPresentation( SfxItemPresentation ePres,
- MapUnit eCoreMetric,
- MapUnit ePresMetric,
- OUString &rText, const IntlWrapper& ) const override;
-
- virtual SfxPoolItem* Clone( SfxItemPool *pPool = nullptr ) const override;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */