From 66fff7efab4dd1ff08b43ed6d2d557ecad578509 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Sat, 20 May 2023 15:01:55 +0900 Subject: xmloff: rename XMLThemeColorExport to XMLComplexColorExport MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3d943f20e76b8f3e0409d307d11e3bf16489bf02 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152050 Tested-by: Tomaž Vajngerl Reviewed-by: Tomaž Vajngerl --- xmloff/inc/XMLComplexColorExport.hxx | 30 ++++++++++++++++++++++++++++++ xmloff/inc/XMLThemeColorExport.hxx | 30 ------------------------------ 2 files changed, 30 insertions(+), 30 deletions(-) create mode 100644 xmloff/inc/XMLComplexColorExport.hxx delete mode 100644 xmloff/inc/XMLThemeColorExport.hxx (limited to 'xmloff/inc') diff --git a/xmloff/inc/XMLComplexColorExport.hxx b/xmloff/inc/XMLComplexColorExport.hxx new file mode 100644 index 000000000000..d62e10fd5c1b --- /dev/null +++ b/xmloff/inc/XMLComplexColorExport.hxx @@ -0,0 +1,30 @@ +/* -*- 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/. + */ +#pragma once + +#include +#include + +namespace com::sun::star::uno +{ +class Any; +} +class SvXMLExport; + +class XMLComplexColorExport +{ + SvXMLExport& mrExport; + +public: + XMLComplexColorExport(SvXMLExport& rExport); + + void exportXML(const css::uno::Any& rAny, sal_uInt16 nPrefix, const OUString& rLocalName); +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/inc/XMLThemeColorExport.hxx b/xmloff/inc/XMLThemeColorExport.hxx deleted file mode 100644 index 9a360c2782d2..000000000000 --- a/xmloff/inc/XMLThemeColorExport.hxx +++ /dev/null @@ -1,30 +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/. - */ -#pragma once - -#include -#include - -namespace com::sun::star::uno -{ -class Any; -} -class SvXMLExport; - -class XMLThemeColorExport -{ - SvXMLExport& mrExport; - -public: - XMLThemeColorExport(SvXMLExport& rExport); - - void exportXML(const css::uno::Any& rAny, sal_uInt16 nPrefix, const OUString& rLocalName); -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit