mirror of
https://github.com/LibreOffice/core.git
synced 2025-08-06 17:34:24 +00:00

Change-Id: Id4c1f6cd4e01a6e053ce6b7dce21f60c9b392578 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188279 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins
27 lines
951 B
C++
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: */
|