/* -*- 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 SdrTextAniStartInsideItem: public SdrYesNoItem { public: SdrTextAniStartInsideItem(bool bOn=false): SdrYesNoItem(SDRATTR_TEXT_ANISTARTINSIDE,bOn) {} SdrTextAniStartInsideItem(SvStream& rIn) : SdrYesNoItem(SDRATTR_TEXT_ANISTARTINSIDE,rIn) {} }; class SdrTextAniStopInsideItem: public SdrYesNoItem { public: SdrTextAniStopInsideItem(bool bOn=false): SdrYesNoItem(SDRATTR_TEXT_ANISTOPINSIDE,bOn) {} SdrTextAniStopInsideItem(SvStream& rIn) : SdrYesNoItem(SDRATTR_TEXT_ANISTOPINSIDE,rIn) {} }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ fice-5-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-04-26Use o3tl::make_unsigned in some placesStephan Bergmann
2020-01-26simplify InterfaceContainerHelper::clearNoel Grandin
2020-01-17Use std::vector in OInterfaceContainerHelper instead of SequenceNoel Grandin
2020-01-15improve "convert OSL_ASSERT to assert"Noel Grandin
2020-01-15convert OSL_ASSERT to assertNoel Grandin
2019-04-20Fix typoAndrea Gelmini
2019-03-03Simplify containers iterations in cppcanvas, cppu, cppuhelperArkadiy Illarionov
2019-02-14tdf#42949 Fix IWYU warnings in cppuhelper/Gabor Kelemen
2019-02-08loplugin:indentation in cppu..cuiNoel Grandin
2018-02-01cppuhelper: MSVC: pragma warning: make more specific, remove obsoleteMike Kaganski
2018-01-12More loplugin:cstylecast: cppuhelperStephan Bergmann
2017-06-05Improved loplugin:cstylecast to reference types: cppuhelperStephan Bergmann
2017-05-07revert OSL_ASSERT changesChris Sherlock
2017-05-07tdf#43157: convert cppuhelper and io from OSL_ASSERT to assertChris Sherlock
2017-04-12clang-tidy: readability-else-after-returnNoel Grandin
2017-02-21loplugin:subtlezeroinit: cppuhelperStephan Bergmann
2017-02-15Drop :: prefix from std in c*/Tor Lillqvist
2016-04-20loplugin:salbool: Automatic rewrite of sal_False/TrueStephan Bergmann
2015-12-02inline one-liner static methodNoel Grandin
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-07-29com::sun::star-css in cppu,cppuhelperNoel Grandin
2015-06-29Revert "return and use std::vector from OInterfaceContainerHelper"Noel Grandin
2015-06-29return and use std::vector from OInterfaceContainerHelperNoel Grandin
2015-06-17Replace boost::scoped_array<T> with std::unique_ptr<T[]>Takeshi Abe
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann
2014-12-27boost::unordered_map -> c++11 std::unordered_mapCaolán McNamara
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
2014-07-12Avoid possible memory leaks in case of exceptionsTakeshi Abe
2014-06-05cppuhelper: remove SAL_THROW macroNoel Grandin
2014-02-17cppuhelper: sal_Bool -> boolStephan Bergmann
2012-12-06re-base on ALv2 code. Includes:Michael Meeks
2012-01-26Code cleanup: ( () ) replaced by (())Alexander Bergmann