diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-30 11:54:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-31 10:33:37 +0100 |
commit | a830a34d6d21656d00996c002b0dedf37b7545c0 (patch) | |
tree | 4313cdbf39384e8085dae85702fb84e075c9a3db /include | |
parent | 3a48ad467b7fbf9cbdfff1222e08c02b0ff5d544 (diff) |
move SvxNumberingPreview out of cui
the point of cui was to have no headers, so move this
SvxNumberingPreview out of cui and into svx
Change-Id: I83edbcdc8d8b95dbea734bdef4a93f6ec8ee50e6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162748
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/numberingpreview.hxx (renamed from include/cui/numberingpreview.hxx) | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/include/cui/numberingpreview.hxx b/include/svx/numberingpreview.hxx index 8a7883522bf0..ac2285c1c643 100644 --- a/include/cui/numberingpreview.hxx +++ b/include/svx/numberingpreview.hxx @@ -1,12 +1,19 @@ -#ifndef INCLUDED_CUI_NUMBERINGPREVIEW_HXX -#define INCLUDED_CUI_NUMBERINGPREVIEW_HXX +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * 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 <cui/cuidllapi.h> +#include <svx/svxdllapi.h> #include <editeng/numitem.hxx> #include <vcl/customweld.hxx> /// Provides the preview to show how looks bullet or numbering format before the apply. -class CUI_DLLPUBLIC SvxNumberingPreview final : public weld::CustomWidgetController +class SVXCORE_DLLPUBLIC SvxNumberingPreview final : public weld::CustomWidgetController { const SvxNumRule* pActNum; vcl::Font aStdFont; @@ -28,4 +35,4 @@ public: void SetLevel(sal_uInt16 nSet) { nActLevel = nSet; } }; -#endif +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |