/* -*- 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 . */ #include #include #include "a11ywrappersplitter.h" using namespace ::com::sun::star::accessibility; // Wrapper for AXSplitter role @implementation AquaA11yWrapperSplitter : AquaA11yWrapper -(NSArray *)accessibilityAttributeNames { // Related: tdf#148453 Acquire solar mutex during native accessibility calls SolarMutexGuard aGuard; if ( mIsDisposed ) return [ NSArray array ]; // Default Attributes NSMutableArray * attributeNames = [ NSMutableArray arrayWithArray: [ super accessibilityAttributeNames ] ]; // Special Attributes and removing unwanted attributes depending on role [ attributeNames addObject: NSAccessibilityOrientationAttribute ]; return attributeNames; } @end /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ distro/cib/libreoffice-6-1'>distro/cib/libreoffice-6-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmloff
AgeCommit message (Expand)Author
2024-05-14tdf#161054: drop support of last empty span as paragraph mark formatMike Kaganski
2024-05-13createFromAscii -> OUString literals in XMLIndexTOCContextNoel Grandin
2024-05-13createFromAscii -> OUString literals in AnimationsExporterNoel Grandin
2024-05-13tdf#161023: Empty spans may only define paragraph marks in text documentsMike Kaganski
2024-05-07tdf#132599 sw schema xmloff: add hyphenation-keep-type='always'László Németh
2024-05-06replace createFromAscii with OUString literals in XMLTransformerOASISEventMapNoel Grandin
2024-05-06replace createFromAscii with OUString literals in xformsNoel Grandin
2024-05-06replace createFromAscii with OUString literals in SdXMLNumberFormatImportNoel Grandin
2024-05-06replace createFromAscii with OUString literals in XMLBibliographyFieldNoel Grandin
2024-05-06replace createFromAscii with OUString literals in MultiPropertySetHelperNoel Grandin
2024-05-06replace createFromAscii with OUString literals in XMLSectionExportNoel Grandin
2024-05-06replace createFromAscii with OUString literals in XMLIndexTemplateContextNoel Grandin
2024-05-05replace createFromAscii with OUString literals in OElementImportNoel Grandin
2024-05-05replace createFromAscii with OUString literals in SdXMLNumberStylesNoel Grandin
2024-05-05replace createFromAscii with OUString literals in EnhancedCustomShapeTokenNoel Grandin
2024-05-03makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo)Christian Lohmaier
2024-05-03tdf#160915: make own OLE objects obey AddReplacementImages settingMike Kaganski
2024-05-02use more OUString compile time literals in xmloffNoel Grandin
2024-05-02use more OUString literals in XMLEventNoel Grandin
2024-04-27Fix dc:date export for midnight timeMike Kaganski
2024-04-26Make sure that collecting redline autostyles succeedsMike Kaganski
2024-04-26tdf#114287 tdf#159366 xmloff: ODF import: revert text:list overrideMichael Stahl
2024-04-26This block seems obsolete now, try to drop itMike Kaganski
2024-04-26Make sure to export autostyles from inside frames anchored to pageMike Kaganski
2024-04-25Fix UBSan failure: omission from 69ed893087f89d176a5ec4b263ce8d75774be72bMike Kaganski
2024-04-24tdf#160253: fix list identifier export decision codeMike Kaganski
2024-04-22use more OUString literalNoel Grandin
2024-04-22Use designated initializers for clarityMike Kaganski
2024-04-19Fix typoAndrea Gelmini
2024-04-19Fix typoAndrea Gelmini
2024-04-19Fix typoAndrea Gelmini
2024-04-19tdf#159903 xmloff: ODF import: fix bug in margin compatibility overrideMichael Stahl
2024-04-18tdf#160517 - chart odf: import/export formatted chart titlesBalazs Varga
2024-04-17Drop FRound, and use generalized basegfx::froundMike Kaganski
2024-04-12crashtesting: assert seen on importing forum-mso-en4-62805.xlsxCaolán McNamara
2024-04-11tdf#132599 cui offapi sw xmloff: add hyphenation-keep-typeLászló Németh
2024-04-09Revert "Fix typo"Taichi Haradaguchi
2024-04-06flatten for readabilityCaolán McNamara
2024-04-06ofz#67867 Null-dereference READCaolán McNamara
2024-04-06Fix typoAndrea Gelmini
2024-04-05Silence strange -Wmaybe-uninitialized with recent GCC 14Stephan Bergmann