/* -*- 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/. */ #pragma once #include class ScDocument; namespace sc { class ColumnSpanSet; class BulkDataHint final : public SfxHint { ScDocument& mrDoc; const ColumnSpanSet* mpSpans; public: BulkDataHint(ScDocument& rDoc, SfxHintId nHintId) : SfxHint(nHintId) , mrDoc(rDoc) , mpSpans(nullptr) { } void setSpans(const ColumnSpanSet* pSpans) { mpSpans = pSpans; } const ColumnSpanSet* getSpans() const { return mpSpans; } ScDocument& getDoc() { return mrDoc; } }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ on value='distro/allotropia/zeta-7-3'>distro/allotropia/zeta-7-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/extras/source/autocorr/lang/fr
AgeCommit message (Expand)Author
2022-02-10simplify autocorrect makefileChristian Lohmaier
2021-07-05Resolves tdf#142938 - Clarify option to replace dashesHeiko Tietze
2021-01-05Fix duplicates in French autocorrectJulien Nabet
2018-12-19update emoji autocorrect files from po-filesChristian Lohmaier
2018-02-22update emoji autocorrect files from po-filesChristian Lohmaier
2016-11-23update emoji autocorrect files from po-filesChristian Lohmaier
2016-10-13delete emoji autocorrect entries that conflict with entering timeChristian Lohmaier
2016-10-11update emoji autocorrect files from po-filesChristian Lohmaier
2016-09-10tdf#97191 fix emoji correction conflict with time formatLászló Németh
2016-05-26update emoji autocorrect files from po-filesChristian Lohmaier
2016-04-21update emoji autocorrect files from po-filesChristian Lohmaier
2015-11-25update emoji autocorrect files from po-filesRobinson Tryon
2015-07-24update emoji autocorrect entries from po-filesChristian Lohmaier
2015-07-16add localized Emoji short namesLászló Németh
2014-08-26fdo#83037 fix autocorrect collisions of short and long ASCII arrowsLászló Németh
2014-08-01fdo#81571 autocorrect doesn't need space before (c), (r), (tm)...László Németh
2014-06-04Move AutoCorrection files to extras/source/autocorrLaurent Balland-Poirier