Files
core/svx/source/items/RectangleAlignmentItem.cxx
Noel Grandin 93573e11d6 move some svx headers inside the module
Change-Id: Id4c1f6cd4e01a6e053ce6b7dce21f60c9b392578
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188279
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
2025-07-24 15:45:23 +02:00

27 lines
951 B
C++

/* -*- 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/.
*/
#include <RectangleAlignmentItem.hxx>
#include <docmodel/theme/FormatScheme.hxx>
SvxRectangleAlignmentItem::SvxRectangleAlignmentItem(sal_uInt16 nWhich,
model::RectangleAlignment nValue)
: SfxEnumItem<model::RectangleAlignment>(nWhich, nValue)
{
}
SvxRectangleAlignmentItem::~SvxRectangleAlignmentItem() {}
SvxRectangleAlignmentItem* SvxRectangleAlignmentItem::Clone(SfxItemPool*) const
{
return new SvxRectangleAlignmentItem(*this);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */