summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-29 11:41:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-29 11:43:40 +0000
commit9bfd742d8cdc4aab3dd817f13ab4cfa5cc60ae12 (patch)
tree51815ec709869dd297c10b8359b3bc4736204a98 /include/editeng
parentcfaba15c589f882cc0bcce5cd07bdf3d30f547f6 (diff)
loplugin:unusedmethods
Change-Id: Ib008613fb06c82791c63d5b074a3e2ff1c3607a0 Reviewed-on: https://gerrit.libreoffice.org/35834 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/lcolitem.hxx52
1 files changed, 0 insertions, 52 deletions
diff --git a/include/editeng/lcolitem.hxx b/include/editeng/lcolitem.hxx
deleted file mode 100644
index 28a9e09336e1..000000000000
--- a/include/editeng/lcolitem.hxx
+++ /dev/null
@@ -1,52 +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_LCOLITEM_HXX
-#define INCLUDED_EDITENG_LCOLITEM_HXX
-
-#include <editeng/colritem.hxx>
-#include <editeng/editengdllapi.h>
-
-/*
- * Dummy item for ToolBox controller:
- *
- */
-
-class EDITENG_DLLPUBLIC SvxLineColorItem : public SvxColorItem
-{
-public:
- explicit SvxLineColorItem( const sal_uInt16 nId );
- SvxLineColorItem( const SvxLineColorItem& rCopy );
- virtual ~SvxLineColorItem() override;
-
- virtual bool GetPresentation( SfxItemPresentation ePres,
- MapUnit eCoreMetric,
- MapUnit ePresMetric,
- OUString &rText,
- const IntlWrapper * pIntlWrapper = nullptr )
- const override;
-
- SvxLineColorItem& operator=(const SvxLineColorItem& rColor)
- { return static_cast<SvxLineColorItem&>(SvxColorItem::
- operator=(static_cast<const SvxColorItem&>(rColor))); }
-
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */