tdf#131098 docx export: write fill property of graphic
[LibreOffice.git] / lotuswordpro / source / filter / lwptaboverride.cxx
blob40c34abdc2532298e3728a61440ea2662ecf9379
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include "lwptaboverride.hxx"
12 LwpTabOverride::LwpTabOverride(LwpTabOverride const& rOther)
13 : LwpOverride(rOther)
14 , m_aTabRackID(rOther.m_aTabRackID)
18 LwpTabOverride* LwpTabOverride::clone() const { return new LwpTabOverride(*this); }
20 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */