/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVX_SDTAIITM_HXX #define INCLUDED_SVX_SDTAIITM_HXX #include #include class SVX_DLLPUBLIC SdrTextAniStartInsideItem: public SdrYesNoItem { public: SdrTextAniStartInsideItem(bool bOn=false): SdrYesNoItem(SDRATTR_TEXT_ANISTARTINSIDE,bOn) {} virtual ~SdrTextAniStartInsideItem() override; virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; class SVX_DLLPUBLIC SdrTextAniStopInsideItem: public SdrYesNoItem { public: SdrTextAniStopInsideItem(bool bOn=false): SdrYesNoItem(SDRATTR_TEXT_ANISTOPINSIDE,bOn) {} virtual ~SdrTextAniStopInsideItem() override; virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ stro/cib/libreoffice-6-1'>distro/cib/libreoffice-6-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/stoc
AgeCommit message (Expand)Author
2015-12-21loplugin:unusedfields in sfx2,slideshow,starmath,stocNoel Grandin
2015-12-21tdf#96223: introspection queries for XPropertySet againOliver Specht
2015-12-10More loplugin:nullptr automatic rewrite (within templates)Stephan Bergmann
2015-11-19use comphelper::containerToSequenceNoel Grandin
2015-11-17Don't assume sal_Unicode is unsigned shortStephan Bergmann
2015-11-16use initialiser list for Sequence<OUString>Noel Grandin
2015-11-15use initialiser for Sequence<OUString>Noel Grandin
2015-11-15use initialiser for Sequence<OUString>Noel Grandin
2015-11-15use initialiser syntax for Sequence<OUString>Noel Grandin
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-11-09new loplugin: oncevarNoel Grandin
2015-11-06loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)Stephan Bergmann
2015-11-05use uno::Reference::set method instead of assignmentNoel Grandin
2015-11-04yyyyyNoel Grandin
2015-11-01no need to use OUString constructor in call to createInstanceNoel Grandin
2015-10-30UNO: no need to use OUString constructor when calling createInstanceNoel Grandin
2015-10-29com::sun::star->css in starmath,stoc,svgio,svlNoel Grandin
2015-10-27don't allocate uno::Reference on the heapNoel Grandin
2015-10-19loplugin:defaultparamsStephan Bergmann
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-10-12Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-10-02loplugin:unusedmethodsNoel Grandin
2015-09-30Fix typosAndrea Gelmini
2015-09-29loplugin:removeunusedmethods, remove unused stuffNoel Grandin
2015-09-18boost->stdCaolán McNamara