basegfx/test/B2DPolyPolygonTest.cxx | 1 basegfx/test/boxclipper.cxx | 9 basegfx/test/boxclipper.hxx | 31 compilerplugins/clang/unusedmethods.results | 1100 ++++------- compilerplugins/clang/unusedmethods.unused-returns.results | 124 - cui/source/inc/optdict.hxx | 1 dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx | 11 dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx | 2 desktop/source/lib/init.cxx | 2 drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx | 4 forms/source/component/imgprod.cxx | 4 include/svx/gallery1.hxx | 2 include/vcl/alpha.hxx | 3 include/vcl/bitmap.hxx | 24 include/vcl/svapp.hxx | 8 package/inc/ByteChucker.hxx | 13 package/source/zipapi/MemoryByteGrabber.hxx | 16 sc/inc/document.hxx | 2 sc/source/core/data/document.cxx | 16 sc/source/filter/xml/XMLExportIterator.hxx | 1 sd/source/ui/inc/SlideSorter.hxx | 3 sd/source/ui/slidesorter/shell/SlideSorter.cxx | 101 + slideshow/source/engine/shapes/gdimtftools.cxx | 2 svx/inc/galleryfilestorage.hxx | 1 sw/inc/ndarr.hxx | 4 sw/inc/ndtxt.hxx | 4 sw/source/core/draw/dflyobj.cxx | 6 sw/source/core/graphic/ndgrf.cxx | 8 sw/source/core/inc/dflyobj.hxx | 1 sw/source/core/txtnode/ndtxt.cxx | 27 sw/source/filter/ww8/writerhelper.cxx | 11 sw/source/filter/ww8/writerhelper.hxx | 2 sw/source/filter/ww8/ww8par.hxx | 2 sw/source/filter/ww8/ww8par2.cxx | 39 vcl/inc/unx/saldisp.hxx | 3 vcl/inc/unx/salgdi.h | 1 vcl/qa/cppunit/skia/skia.cxx | 8 vcl/source/app/svapp.cxx | 10 vcl/source/bitmap/alpha.cxx | 12 vcl/source/bitmap/bitmappaint.cxx | 4 vcl/source/filter/egif/egif.cxx | 8 vcl/source/filter/eps/eps.cxx | 8 vcl/source/filter/graphicfilter.cxx | 18 vcl/source/filter/graphicfilter2.cxx | 1 vcl/source/filter/graphicfilter_internal.hxx | 27 vcl/source/filter/wmf/emfwr.cxx | 6 vcl/source/filter/wmf/wmfwr.cxx | 6 vcl/unx/generic/app/saldisp.cxx | 63 writerfilter/source/dmapper/DomainMapper_Impl.cxx | 8 writerfilter/source/dmapper/DomainMapper_Impl.hxx | 12 writerfilter/source/dmapper/PropertyMap.hxx | 1 51 files changed, 1005 insertions(+), 776 deletions(-)
New commits: commit fbb5ab3e0ecb862fa5c48ef4640859c4aeb77984 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Mon Oct 23 10:58:51 2023 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Mon Oct 23 13:18:01 2023 +0200 tdf#156525 Save as > HTML loses drawing object as invalid gif This patch is specifically for the 7-6 branch, other changes meant that master received a simpler fix. This reverts the following patches commit f22c23e71d4ae628e9e90ee98d22d1fc8fca1619 Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Wed Aug 2 15:26:06 2023 +0200 tdf#156525 Save as > HTML loses drawing object as invalid gif commit 04f02cfecfae481f256b6c98a1940fc5235a921a Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Wed May 10 14:06:49 2023 +0200 AlphaMask::BlendWith wants an AlphaMask parameter commit 8270eb5d5600cc84dbf5f0e339f90c4519ef88bb Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Fri May 19 13:35:31 2023 +0200 loplugin:unusedmethods Change-Id: I2146557b6401079061474d5d83082f75d6f1974f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158340 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/basegfx/test/B2DPolyPolygonTest.cxx b/basegfx/test/B2DPolyPolygonTest.cxx index 5319e6b46967..f51d396b8578 100644 --- a/basegfx/test/B2DPolyPolygonTest.cxx +++ b/basegfx/test/B2DPolyPolygonTest.cxx @@ -24,6 +24,7 @@ #include <basegfx/polygon/b2dpolypolygon.hxx> #include <basegfx/polygon/b2dtrapezoid.hxx> +#include "boxclipper.hxx" #include <random> namespace basegfx diff --git a/basegfx/test/boxclipper.cxx b/basegfx/test/boxclipper.cxx index d58806cb739e..b65f25bae425 100644 --- a/basegfx/test/boxclipper.cxx +++ b/basegfx/test/boxclipper.cxx @@ -31,10 +31,19 @@ #include <comphelper/random.hxx> #include <rtl/math.hxx> +#include "boxclipper.hxx" + using namespace ::basegfx; namespace basegfx2d { +/// Gets a random ordinal [0,n) +double getRandomOrdinal( const std::size_t n ) +{ + // use this one when displaying polygons in OOo, which still sucks + // great rocks when trying to import non-integer svg:d attributes + return comphelper::rng::uniform_size_distribution(0, n-1); +} static bool compare(const B2DPoint& left, const B2DPoint& right) { diff --git a/basegfx/test/boxclipper.hxx b/basegfx/test/boxclipper.hxx new file mode 100644 index 000000000000..03aad0d2ba74 --- /dev/null +++ b/basegfx/test/boxclipper.hxx @@ -0,0 +1,31 @@ +/* -*- 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 . + */ + +#pragma once + +#include <sal/config.h> + +#include <cstddef> + +namespace basegfx2d +{ +double getRandomOrdinal(const std::size_t n); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/compilerplugins/clang/unusedmethods.results b/compilerplugins/clang/unusedmethods.results index fcda4538fe36..d5ae4bef1ec6 100644 --- a/compilerplugins/clang/unusedmethods.results +++ b/compilerplugins/clang/unusedmethods.results @@ -1,7 +1,7 @@ +basctl/source/basicide/baside2.hxx:159 + unsigned short basctl::EditorWindow::GetCurrentZoom() basegfx/source/range/b2drangeclipper.cxx:686 type-parameter-?-? basegfx::(anonymous namespace)::eraseFromList(type-parameter-?-? &,const type-parameter-?-? &) -basegfx/test/boxclipper.hxx:28 - double basegfx2d::getRandomOrdinal(const unsigned long) basic/source/inc/buffer.hxx:40 void SbiBuffer::operator+=(signed char) basic/source/inc/buffer.hxx:41 @@ -64,9 +64,9 @@ connectivity/source/drivers/firebird/Util.hxx:74 const rtl::OUString & connectivity::firebird::ColumnTypeInfo::getCharacterSet() const connectivity/source/drivers/mysqlc/mysqlc_connection.hxx:180 rtl::OUString connectivity::mysqlc::OConnection::transFormPreparedStatement(const rtl::OUString &) -connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:91 +connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:93 type-parameter-?-? connectivity::mysqlc::OPreparedResultSet::safelyRetrieveValue(const int) -connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:92 +connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:94 type-parameter-?-? connectivity::mysqlc::OPreparedResultSet::retrieveValue(const int) connectivity/source/drivers/mysqlc/mysqlc_user.hxx:28 connectivity::mysqlc::User::User(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection>) @@ -100,26 +100,6 @@ connectivity/source/inc/OTypeInfo.hxx:45 _Bool connectivity::OTypeInfo::operator==(const struct connectivity::OTypeInfo &) const connectivity/source/inc/OTypeInfo.hxx:46 _Bool connectivity::OTypeInfo::operator!=(const struct connectivity::OTypeInfo &) const -cppuhelper/inc/compbase2.hxx:60 - void cppuhelper::WeakComponentImplHelperBase2::throwIfDisposed(std::unique_lock<std::mutex> &) -cppuhelper/inc/interfacecontainer4.hxx:93 - void cppuhelper::OInterfaceIteratorHelper4::remove(std::unique_lock<std::mutex> &) -cppuhelper/inc/interfacecontainer4.hxx:142 - int cppuhelper::OInterfaceContainerHelper4::getLength(std::unique_lock<std::mutex> &) const -cppuhelper/inc/interfacecontainer4.hxx:150 - vector<Reference<type-parameter-?-?>, allocator<Reference<type-parameter-?-?> > > cppuhelper::OInterfaceContainerHelper4::getElements(std::unique_lock<std::mutex> &) const -cppuhelper/inc/interfacecontainer4.hxx:195 - void cppuhelper::OInterfaceContainerHelper4::clear(std::unique_lock<std::mutex> &) -cppuhelper/inc/interfacecontainer4.hxx:210 - void cppuhelper::OInterfaceContainerHelper4::forEach(std::unique_lock<std::mutex> &,const type-parameter-?-? &) const -cppuhelper/inc/interfacecontainer4.hxx:235 - void cppuhelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -cppuhelper/inc/interfacecontainer4.hxx:235 - void cppuhelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (type-parameter-?-?::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -cppuhelper/inc/interfacecontainer4.hxx:270 - cppuhelper::OInterfaceContainerHelper4::NotifySingleListener::NotifySingleListener<EventT>(void (type-parameter-?-?::*)(const type-parameter-?-? &),const type-parameter-?-? &) -cppuhelper/inc/interfacecontainer4.hxx:277 - void cppuhelper::OInterfaceContainerHelper4::NotifySingleListener::operator()(const Reference<type-parameter-?-?> &) const cui/source/dialogs/SpellAttrib.hxx:73 _Bool svx::SpellErrorDescription::operator==(const struct svx::SpellErrorDescription &) const cui/source/inc/CustomNotebookbarGenerator.hxx:30 @@ -134,36 +114,28 @@ cui/source/inc/GraphicsTestsDialog.hxx:48 void GraphicsTestsDialog::HandleResultViewRequest(weld::Button &) cui/source/inc/GraphicsTestsDialog.hxx:48 void GraphicsTestsDialog::LinkStubHandleResultViewRequest(void *,weld::Button &) -cui/source/inc/optdict.hxx:92 - _Bool SvxEditDictionaryDialog::InsertTextHdl(SvxEditDictionaryDialog *,rtl::OUString &) -cui/source/inc/optdict.hxx:92 - _Bool SvxEditDictionaryDialog::LinkStubInsertTextHdl(void *,rtl::OUString &) cui/source/inc/SvxNotebookbarConfigPage.hxx:40 void SvxNotebookbarConfigPage::SetElement() dbaccess/source/filter/hsqldb/fbalterparser.hxx:19 void dbahsql::FbAlterStmtParser::ensureProperTableLengths() const dbaccess/source/filter/hsqldb/parseschema.hxx:80 const std::map<rtl::OUString, std::vector<rtl::OUString> > & dbahsql::SchemaParser::getPrimaryKeys() const -dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx:235 - void dbaui::OPostgresConnectionPageSetup::LinkStubOnEditModified(void *,weld::Entry &) -dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx:264 - rtl::OUString dbaui::OPostgresConnectionPageSetup::getURLNoPrefix() const dbaccess/source/ui/inc/dsmeta.hxx:87 - __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int> > dbaui::FeatureSet::begin() const + __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::begin() const dbaccess/source/ui/inc/dsmeta.hxx:88 - __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int> > dbaui::FeatureSet::end() const + __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::end() const dbaccess/source/ui/inc/FieldControls.hxx:68 rtl::OUString dbaui::OPropNumericEditCtrl::get_text() const dbaccess/source/ui/inc/FieldControls.hxx:73 void dbaui::OPropNumericEditCtrl::set_min(int) dbaccess/source/ui/inc/indexcollection.hxx:51 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex> > dbaui::OIndexCollection::begin() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::begin() const dbaccess/source/ui/inc/indexcollection.hxx:55 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex> > dbaui::OIndexCollection::end() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::end() const dbaccess/source/ui/inc/indexcollection.hxx:60 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex> > dbaui::OIndexCollection::find(const rtl::OUString &) const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::find(const rtl::OUString &) const dbaccess/source/ui/inc/indexcollection.hxx:62 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex> > dbaui::OIndexCollection::findOriginal(const rtl::OUString &) const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::findOriginal(const rtl::OUString &) const dbaccess/source/ui/inc/unodatbr.hxx:316 _Bool dbaui::SbaTableQueryBrowser::implCopyObject(ODataClipboard &,const weld::TreeIter &,int) desktop/inc/lib/init.hxx:142 @@ -195,13 +167,11 @@ editeng/inc/editdoc.hxx:547 editeng/inc/editdoc.hxx:548 _Bool EditLine::IsValid() const editeng/inc/edtspell.hxx:103 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange> > WrongList::begin() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange>, struct std::random_access_iterator_tag> WrongList::begin() const editeng/inc/edtspell.hxx:104 - __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange> > WrongList::end() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange>, struct std::random_access_iterator_tag> WrongList::end() const editeng/source/editeng/impedit.hxx:235 tools::Rectangle LOKSpecialPositioning::GetWindowPos(const tools::Rectangle &,enum MapUnit) const -editeng/source/editeng/impedit.hxx:755 - double ImpEditEngine::scaleYFontValue(unsigned short) const embeddedobj/source/msole/olecomponent.hxx:75 _Bool OleComponent::InitializeObject_Impl() embeddedobj/source/msole/olecomponent.hxx:77 @@ -276,10 +246,14 @@ extensions/source/scanner/scanner.hxx:83 com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScannerManager_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) hwpfilter/source/hiodev.h:63 unsigned long HIODev::read4b(void *,unsigned long) +hwpfilter/source/mzstring.h:100 + MzString & MzString::operator<<(unsigned char) +hwpfilter/source/mzstring.h:102 + MzString & MzString::operator<<(long) +hwpfilter/source/mzstring.h:103 + MzString & MzString::operator<<(short) idl/source/prj/svidl.cxx:103 int main(int,char **) -include/basegfx/color/bcolormodifier.hxx:303 - basegfx::BColorModifier_randomize::BColorModifier_randomize(double) include/basegfx/curve/b2dcubicbezier.hxx:50 _Bool basegfx::B2DCubicBezier::operator==(const basegfx::B2DCubicBezier &) const include/basegfx/curve/b2dcubicbezier.hxx:51 @@ -288,8 +262,16 @@ include/basegfx/curve/b2dcubicbezier.hxx:194 void basegfx::B2DCubicBezier::transform(const basegfx::B2DHomMatrix &) include/basegfx/curve/b2dcubicbezier.hxx:197 void basegfx::B2DCubicBezier::fround() -include/basegfx/matrix/b2dhommatrix.hxx:114 +include/basegfx/matrix/b2dhommatrix.hxx:106 void basegfx::B2DHomMatrix::scale(const basegfx::B2DTuple &) +include/basegfx/matrix/b2dhommatrix.hxx:112 + basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator+=(const basegfx::B2DHomMatrix &) +include/basegfx/matrix/b2dhommatrix.hxx:113 + basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator-=(const basegfx::B2DHomMatrix &) +include/basegfx/matrix/b2dhommatrix.hxx:118 + basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double) +include/basegfx/matrix/b2dhommatrix.hxx:119 + basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double) include/basegfx/matrix/b2dhommatrixtools.hxx:132 basegfx::B2DHomMatrix basegfx::utils::createRotateAroundCenterKeepAspectRatioStayInsideRange(const basegfx::B2DRange &,double) include/basegfx/matrix/b2dhommatrixtools.hxx:214 @@ -308,10 +290,6 @@ include/basegfx/matrix/b3dhommatrix.hxx:105 basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double) include/basegfx/matrix/b3dhommatrix.hxx:106 basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double) -include/basegfx/matrix/hommatrixtemplate.hxx:46 - basegfx::internal::ImplMatLine::ImplMatLine<RowSize>(unsigned short) -include/basegfx/matrix/hommatrixtemplate.hxx:300 - _Bool basegfx::internal::ImplHomMatrixTemplate::isInvertible() const include/basegfx/numeric/ftools.hxx:116 double basegfx::snapToRange(double,double,double) include/basegfx/numeric/ftools.hxx:120 @@ -344,6 +322,8 @@ include/basegfx/polygon/b3dpolypolygon.hxx:109 basegfx::B3DPolygon * basegfx::B3DPolyPolygon::end() include/basegfx/range/b1drange.hxx:50 basegfx::B1DRange::B1DRange(double) +include/basegfx/range/b1drange.hxx:72 + _Bool basegfx::B1DRange::operator==(const basegfx::B1DRange &) const include/basegfx/range/b1drange.hxx:143 double basegfx::B1DRange::clamp(double) const include/basegfx/range/b2dpolyrange.hxx:64 @@ -398,10 +378,6 @@ include/basegfx/tuple/Tuple2D.hxx:83 _Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<long> &) const include/basegfx/utils/b2dclipstate.hxx:72 _Bool basegfx::utils::B2DClipState::operator!=(const basegfx::utils::B2DClipState &) const -include/basegfx/utils/bgradient.hxx:290 - basegfx::BGradient::BGradient(const struct com::sun::star::awt::Gradient2 &) -include/basegfx/utils/bgradient.hxx:291 - basegfx::BGradient::BGradient(const com::sun::star::uno::Any &) include/basegfx/utils/canvastools.hxx:110 struct com::sun::star::geometry::AffineMatrix3D & basegfx::unotools::affineMatrixFromHomMatrix3D(struct com::sun::star::geometry::AffineMatrix3D &,const basegfx::B3DHomMatrix &) include/basegfx/utils/canvastools.hxx:130 @@ -424,6 +400,8 @@ include/basic/codecompletecache.hxx:82 std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const CodeCompleteDataCache &) include/basic/sbxvar.hxx:138 struct SbxValues * SbxValue::data() +include/codemaker/commoncpp.hxx:47 + rtl::OString codemaker::cpp::translateUnoToCppType(enum codemaker::UnoType::Sort,std::basic_string_view<char16_t>) include/codemaker/global.hxx:54 FileStream & operator<<(FileStream &,const rtl::OString *) include/codemaker/global.hxx:56 @@ -438,11 +416,11 @@ include/comphelper/basicio.hxx:52 const com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> & comphelper::operator>>(const com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> &,unsigned int &) include/comphelper/basicio.hxx:53 const com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> & comphelper::operator<<(const com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> &,unsigned int) -include/comphelper/configuration.hxx:254 +include/comphelper/configuration.hxx:240 type-parameter-?-? comphelper::ConfigurationLocalizedProperty::get() -include/comphelper/configuration.hxx:270 +include/comphelper/configuration.hxx:256 void comphelper::ConfigurationLocalizedProperty::set(const type-parameter-?-? &,const std::shared_ptr<comphelper::ConfigurationChanges> &) -include/comphelper/configuration.hxx:305 +include/comphelper/configuration.hxx:291 com::sun::star::uno::Reference<com::sun::star::container::XHierarchicalNameReplace> comphelper::ConfigurationGroup::get(const std::shared_ptr<comphelper::ConfigurationChanges> &) include/comphelper/errcode.hxx:84 _Bool ErrCode::operator<(const ErrCode &) const @@ -480,36 +458,56 @@ include/comphelper/interfacecontainer3.hxx:63 OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(OInterfaceContainerHelper3<type-parameter-?-?> &) include/comphelper/interfacecontainer3.hxx:91 OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(const OInterfaceIteratorHelper3<ListenerT> &) -include/comphelper/interfacecontainer3.hxx:169 - const Reference<type-parameter-?-?> & comphelper::OInterfaceContainerHelper3::getInterface(int) const include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XDockableWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XItemListListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XKeyHandler::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseClickHandler::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XStyleChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XWindowListener2::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tab::XTabPageContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 @@ -526,6 +524,10 @@ include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XStorageChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XUndoManagerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::drawing::XShape::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XApproveActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 @@ -568,6 +570,8 @@ include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::presentation::XShapeEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::presentation::XSlideShowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer3.hxx:213 + void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::script::XScriptListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::script::vba::XVBAScriptListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/interfacecontainer3.hxx:213 @@ -608,118 +612,58 @@ include/comphelper/interfacecontainer4.hxx:46 OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(OInterfaceIteratorHelper4<ListenerT>) include/comphelper/interfacecontainer4.hxx:63 OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(std::unique_lock<std::mutex> &,OInterfaceContainerHelper4<type-parameter-?-?> &) -include/comphelper/interfacecontainer4.hxx:97 +include/comphelper/interfacecontainer4.hxx:95 OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(const OInterfaceIteratorHelper4<ListenerT> &) -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::accessibility::XAccessibleEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XItemListListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::grid::XGridColumnListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::grid::XGridDataListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::tab::XTabPageContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::tree::XTreeDataModelListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertySetInfoChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XVetoableChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::chart::XChartDataChangeEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::container::XContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::datatransfer::dnd::XDragGestureListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::datatransfer::dnd::XDropTargetListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XStorageChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XUndoManagerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::form::XGridControlListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::form::XLoadListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::form::XUpdateListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::io::XStreamListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::presentation::XSlideShowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::script::XScriptListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XUIConfigurationListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XChangesListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XCloseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XFlushListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XModeChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XPrintJobListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/comphelper/interfacecontainer4.hxx:230 - void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const +include/comphelper/interfacecontainer4.hxx:188 + void comphelper::OInterfaceContainerHelper4::clear(std::unique_lock<std::mutex> &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::accessibility::XAccessibleEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::grid::XGridColumnListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertySetInfoChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::chart::XChartDataChangeEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::io::XStreamListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XUIConfigurationListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XPrintJobListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) +include/comphelper/interfacecontainer4.hxx:228 + void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) include/comphelper/logging.hxx:58 rtl::OUString comphelper::log::convert::convertLogArgToString(char16_t) include/comphelper/logging.hxx:224 @@ -756,16 +700,16 @@ include/comphelper/logging.hxx:428 void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const include/comphelper/lok.hxx:49 _Bool comphelper::LibreOfficeKit::isLocalRendering() -include/comphelper/lok.hxx:117 +include/comphelper/lok.hxx:112 void comphelper::LibreOfficeKit::setBlockedCommandList(const char *) include/comphelper/multicontainer2.hxx:112 void comphelper::OMultiTypeInterfaceContainerHelper2::clear() -include/comphelper/multiinterfacecontainer3.hxx:75 - _Bool comphelper::OMultiTypeInterfaceContainerHelperVar3::hasContainedTypes() const include/comphelper/multiinterfacecontainer3.hxx:179 void comphelper::OMultiTypeInterfaceContainerHelperVar3::clear() -include/comphelper/multiinterfacecontainer4.hxx:174 - void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear(std::unique_lock<std::mutex> &) +include/comphelper/multiinterfacecontainer4.hxx:57 + _Bool comphelper::OMultiTypeInterfaceContainerHelperVar4::hasContainedTypes() const +include/comphelper/multiinterfacecontainer4.hxx:161 + void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear() include/comphelper/profilezone.hxx:56 comphelper::ProfileZone::ProfileZone(const char *,const std::map<rtl::OUString, rtl::OUString> &) include/comphelper/propagg.hxx:59 @@ -776,14 +720,6 @@ include/comphelper/proparrhlp.hxx:83 cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper() const include/comphelper/PropertyInfoHash.hxx:36 comphelper::PropertyInfo::PropertyInfo(const rtl::OUString &,int,const com::sun::star::uno::Type &,short) -include/comphelper/propmultiplex2.hxx:60 - void comphelper::OPropertyChangeListener2::disposeAdapter(std::unique_lock<std::mutex> &) -include/comphelper/propmultiplex2.hxx:103 - void comphelper::OPropertyChangeMultiplexer2::lock() -include/comphelper/propmultiplex2.hxx:105 - void comphelper::OPropertyChangeMultiplexer2::unlock() -include/comphelper/propshlp.hxx:67 - comphelper::OPropertySetHelper::OPropertySetHelper(_Bool) include/comphelper/scopeguard.hxx:54 ScopeGuard<Func> comphelper::<deduction guide for ScopeGuard>(ScopeGuard<Func>) include/comphelper/scopeguard.hxx:59 @@ -795,16 +731,16 @@ include/comphelper/sequence.hxx:207 include/comphelper/sequence.hxx:207 Sequence<type-parameter-?-?> comphelper::containerToSequence(const type-parameter-?-? (&)[S]) include/comphelper/sequenceashashmap.hxx:403 - __gnu_debug::_Safe_iterator<struct std::__detail::_Node_const_iterator<struct std::pair<const struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any>, false, true>, std::unordered_map<struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any, struct comphelper::OUStringAndHashCodeHash, struct comphelper::OUStringAndHashCodeEqual> > comphelper::SequenceAsHashMap::find(const struct comphelper::OUStringAndHashCode &) const -include/comphelper/singletonref.hxx:134 - type-parameter-?-? & comphelper::SingletonRef::operator*() const + __gnu_debug::_Safe_iterator<struct std::__detail::_Node_const_iterator<struct std::pair<const struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any>, false, true>, std::unordered_map<struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any, struct comphelper::OUStringAndHashCodeHash, struct comphelper::OUStringAndHashCodeEqual>, struct std::forward_iterator_tag> comphelper::SequenceAsHashMap::find(const struct comphelper::OUStringAndHashCode &) const +include/comphelper/servicedecl.hxx:107 + comphelper::service_decl::ServiceDecl::ServiceDecl(const type-parameter-?-? &,const char *,const char *) include/comphelper/stl_types.hxx:81 _Bool comphelper::UniquePtrValueLess::operator()(const type-parameter-?-? &,const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &) const include/comphelper/stl_types.hxx:87 _Bool comphelper::UniquePtrValueLess::operator()(const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &,const type-parameter-?-? &) const include/comphelper/string.hxx:98 std::basic_string_view<char> comphelper::string::stripEnd(std::basic_string_view<char>,char) -include/comphelper/traceevent.hxx:210 +include/comphelper/traceevent.hxx:215 void comphelper::AsyncEvent::finish() include/comphelper/unique_disposing_ptr.hxx:47 type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const @@ -818,78 +754,32 @@ include/connectivity/FValue.hxx:428 connectivity::TSetBound::TSetBound(_Bool) include/connectivity/FValue.hxx:429 void connectivity::TSetBound::operator()(connectivity::ORowSetValue &) const -include/connectivity/sqlparse.hxx:185 +include/connectivity/sqlparse.hxx:186 rtl::OUString connectivity::OSQLParser::RuleIDToStr(unsigned int) include/desktop/crashreport.hxx:104 rtl::OUString CrashReporter::getActiveSfxObjectName() include/desktop/crashreport.hxx:109 rtl::OUString CrashReporter::getLoggedUnoCommands() -include/docmodel/color/ComplexColor.hxx:101 - void model::ComplexColor::setTransformations(const std::vector<struct model::Transformation> &) -include/docmodel/color/ComplexColor.hxx:162 - model::ThemeColor model::ComplexColor::createThemeColor() const -include/docmodel/theme/FormatScheme.hxx:452 - model::FormatScheme::FormatScheme(const rtl::OUString &) -include/docmodel/theme/Theme.hxx:125 - void model::FontScheme::setMinorSupplementalFontList(const std::vector<struct model::ThemeSupplementalFont> &) -include/docmodel/theme/Theme.hxx:150 - void model::FontScheme::setMajorSupplementalFontList(const std::vector<struct model::ThemeSupplementalFont> &) -include/docmodel/theme/Theme.hxx:175 - void model::Theme::setFormatScheme(const model::FormatScheme &) -include/docmodel/theme/ThemeColor.hxx:35 - enum model::ThemeColorType model::ThemeColor::getType() const -include/docmodel/theme/ThemeColor.hxx:39 - void model::ThemeColor::clearTransformations() -include/docmodel/theme/ThemeColor.hxx:46 - void model::ThemeColor::addTransformation(const struct model::Transformation &) -include/docmodel/theme/ThemeColor.hxx:51 - void model::ThemeColor::removeTransformations(enum model::TransformationType) -include/docmodel/theme/ThemeColor.hxx:60 - const std::vector<struct model::Transformation> & model::ThemeColor::getTransformations() const -include/docmodel/theme/ThemeColor.hxx:63 - Color model::ThemeColor::applyTransformations(const Color &) const -include/docmodel/theme/ThemeColor.hxx:90 - _Bool model::ThemeColor::operator==(const model::ThemeColor &) const include/drawinglayer/geometry/viewinformation2d.hxx:123 _Bool drawinglayer::geometry::ViewInformation2D::operator!=(const drawinglayer::geometry::ViewInformation2D &) const include/drawinglayer/primitive2d/baseprimitive2d.hxx:136 _Bool drawinglayer::primitive2d::BasePrimitive2D::operator!=(const drawinglayer::primitive2d::BasePrimitive2D &) const -include/drawinglayer/primitive2d/fillgraphicprimitive2d.hxx:39 - void drawinglayer::processor2d::setOffsetXYCreatedBitmap(drawinglayer::primitive2d::FillGraphicPrimitive2D &,const BitmapEx &) -include/drawinglayer/primitive2d/fillgraphicprimitive2d.hxx:81 - void drawinglayer::primitive2d::FillGraphicPrimitive2D::impSetOffsetXYCreatedBitmap(const BitmapEx &) -include/drawinglayer/primitive2d/fillgraphicprimitive2d.hxx:95 - const BitmapEx & drawinglayer::primitive2d::FillGraphicPrimitive2D::getOffsetXYCreatedBitmap() const -include/drawinglayer/primitive2d/PolygonHairlinePrimitive2D.hxx:85 - drawinglayer::primitive2d::SingleLinePrimitive2D::SingleLinePrimitive2D(const basegfx::B2DPoint &,const basegfx::B2DPoint &,const basegfx::BColor &) -include/drawinglayer/primitive2d/PolygonHairlinePrimitive2D.hxx:126 - drawinglayer::primitive2d::LineRectanglePrimitive2D::LineRectanglePrimitive2D(const basegfx::B2DRange &,const basegfx::BColor &) -include/drawinglayer/primitive2d/PolyPolygonColorPrimitive2D.hxx:82 - drawinglayer::primitive2d::FilledRectanglePrimitive2D::FilledRectanglePrimitive2D(const basegfx::B2DRange &,const basegfx::BColor &) include/drawinglayer/primitive3d/baseprimitive3d.hxx:65 drawinglayer::primitive3d::Primitive3DContainer::Primitive3DContainer(type-parameter-?-?,type-parameter-?-?) -include/drawinglayer/primitive3d/baseprimitive3d.hxx:111 +include/drawinglayer/primitive3d/baseprimitive3d.hxx:112 _Bool drawinglayer::primitive3d::BasePrimitive3D::operator!=(const drawinglayer::primitive3d::BasePrimitive3D &) const -include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:56 - void drawinglayer::processor2d::CairoPixelProcessor2D::processUnifiedTransparencePrimitive2D(const drawinglayer::primitive2d::UnifiedTransparencePrimitive2D &) -include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:65 - void drawinglayer::processor2d::CairoPixelProcessor2D::processMarkerArrayPrimitive2D(const drawinglayer::primitive2d::MarkerArrayPrimitive2D &) -include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:66 - void drawinglayer::processor2d::CairoPixelProcessor2D::processBackgroundColorPrimitive2D(const drawinglayer::primitive2d::BackgroundColorPrimitive2D &) -include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:84 - drawinglayer::processor2d::CairoPixelProcessor2D::CairoPixelProcessor2D(const drawinglayer::geometry::ViewInformation2D &) include/drawinglayer/tools/primitive2dxmldump.hxx:45 void drawinglayer::Primitive2dXmlDump::dump(const drawinglayer::primitive2d::Primitive2DContainer &,const rtl::OUString &) -include/editeng/colritem.hxx:66 - const Color & SvxColorItem::getColor() const -include/editeng/editeng.hxx:246 +include/editeng/colritem.hxx:96 + short SvxColorItem::GetTintOrShade() const +include/editeng/colritem.hxx:101 + void SvxColorItem::SetTintOrShade(short) +include/editeng/editeng.hxx:244 _Bool EditEngine::GetVertical() const -include/editeng/editeng.hxx:248 +include/editeng/editeng.hxx:246 enum TextRotation EditEngine::GetRotation() const include/editeng/hyphenzoneitem.hxx:67 _Bool SvxHyphenZoneItem::IsPageEnd() const -include/editeng/lrspitem.hxx:67 - SvxLeftMarginItem::SvxLeftMarginItem(const long,const unsigned short) include/editeng/outlobj.hxx:146 std::optional::optional(struct std::in_place_t,type-parameter-?-? &&...) include/editeng/outlobj.hxx:165 @@ -902,7 +792,7 @@ include/formula/opcode.hxx:523 std::basic_string<char> OpCodeEnumToString(enum OpCode) include/formula/tokenarray.hxx:182 formula::FormulaTokenArrayReferencesIterator formula::FormulaTokenArrayReferencesIterator::operator++(int) -include/formula/tokenarray.hxx:586 +include/formula/tokenarray.hxx:581 basic_ostream<type-parameter-?-?, type-parameter-?-?> & formula::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const formula::FormulaTokenArray &) include/framework/addonsoptions.hxx:195 rtl::OUString framework::AddonsOptions::GetAddonsNotebookBarResourceName(unsigned int) const @@ -1106,24 +996,10 @@ include/o3tl/typed_flags_set.hxx:313 typename typed_flags<type-parameter-?-?>::Self operator^=(type-parameter-?-? &,typename typed_flags<type-parameter-?-?>::Wrap) include/o3tl/vector_pool.hxx:84 o3tl::detail::struct_from_value::type::type() -include/oox/drawingml/clrscheme.hxx:95 - const rtl::OUString & oox::drawingml::ClrScheme::GetName() const -include/oox/drawingml/clrscheme.hxx:97 - void oox::drawingml::ClrScheme::ToAny(com::sun::star::uno::Any &) const -include/oox/drawingml/clrscheme.hxx:98 - void oox::drawingml::ClrScheme::fill(model::ColorSet &) const -include/oox/drawingml/color.hxx:118 - _Bool oox::drawingml::Color::equals(const oox::drawingml::Color &,const oox::GraphicHelper &,Color) const -include/oox/drawingml/ThemeFilterBase.hxx:35 - void oox::drawingml::ThemeFilterBase::setCurrentTheme(const std::shared_ptr<oox::drawingml::Theme> &) include/oox/export/DMLPresetShapeExport.hxx:100 _Bool oox::drawingml::DMLPresetShapeExporter::HasHandleValue() const include/oox/export/DMLPresetShapeExport.hxx:129 com::sun::star::uno::Any oox::drawingml::DMLPresetShapeExporter::FindHandleValue(com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue>,std::basic_string_view<char16_t>) -include/oox/export/drawingml.hxx:362 - _Bool oox::drawingml::DrawingML::WriteCharColor(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &) -include/oox/export/drawingml.hxx:503 - Color oox::drawingml::DrawingML::ColorWithIntensity(unsigned int,unsigned int) include/oox/helper/attributelist.hxx:69 long oox::AttributeConversion::decodeHyper(std::basic_string_view<char16_t>) include/oox/helper/containerhelper.hxx:51 @@ -1156,6 +1032,10 @@ include/opencl/openclconfig.hxx:58 _Bool OpenCLConfig::ImplMatcher::operator!=(const struct OpenCLConfig::ImplMatcher &) const include/opencl/openclconfig.hxx:95 std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct OpenCLConfig &) +include/sax/fshelper.hxx:129 + void sax_fastparser::FastSerializerHelper::singleElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &) +include/sax/fshelper.hxx:133 + void sax_fastparser::FastSerializerHelper::startElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &) include/sax/tools/converter.hxx:206 _Bool sax::Converter::convertAngle(short &,std::basic_string_view<char16_t>,_Bool) include/sfx2/childwin.hxx:120 @@ -1170,7 +1050,7 @@ include/sfx2/lokcomponenthelpers.hxx:49 void LokChartHelper::Invalidate() include/sfx2/msg.hxx:120 const std::type_info * SfxType0::Type() const -include/sfx2/viewsh.hxx:451 +include/sfx2/viewsh.hxx:406 enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const include/svl/itemiter.hxx:44 _Bool SfxItemIter::IsAtEnd() const @@ -1592,8 +1472,6 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxEscapementItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFieldItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFirstLineIndentItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontHeightItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1620,10 +1498,6 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGrfCrop, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGridItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGutterLeftMarginItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGutterRightMarginItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHangingPunctuationItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1642,8 +1516,6 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLRSpaceItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLanguageItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLeftMarginItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineEndListItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1702,10 +1574,6 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPrintItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxProtectItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRectangleAlignmentItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRightMarginItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRotateModeItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1724,12 +1592,8 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSizeItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSmartTagItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxStatusItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTabStopItem, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTextLeftMarginItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTextRotateItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1778,6 +1642,8 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCropGrf, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocDisplayItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocPosUpdate, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawFrameFormat, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1826,8 +1692,6 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFillOrder, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFlyCnt, derived_type>, int>::type) -include/svl/typedwhich.hxx:31 - TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFlySplit, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFollowTextFlow, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1904,6 +1768,8 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRotationGrf, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwShadowCursorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwStringMsgPoolItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTOXMark, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -1912,6 +1778,8 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxNumFormat, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxValue, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableFormulaUpdate, derived_type>, int>::type) include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTestItem, derived_type>, int>::type) include/svl/typedwhich.hxx:31 @@ -2028,15 +1896,15 @@ include/svl/typedwhich.hxx:31 TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<const SfxStringItem, derived_type>, int>::type) include/svl/whichranges.hxx:52 void svl::Items_t::fill(struct std::pair<unsigned short, unsigned short> *) -include/svtools/ctrlbox.hxx:403 +include/svtools/ctrlbox.hxx:402 void FontStyleBox::set_size_request(int,int) -include/svtools/ctrlbox.hxx:474 +include/svtools/ctrlbox.hxx:473 void FontSizeBox::set_size_request(int,int) include/svtools/DocumentToGraphicRenderer.hxx:105 _Bool DocumentToGraphicRenderer::isImpress() const include/svtools/HtmlWriter.hxx:46 void HtmlWriter::writeAttribute(SvStream &,std::basic_string_view<char>,int) -include/svtools/scrolladaptor.hxx:60 +include/svtools/scrolladaptor.hxx:59 _Bool ScrollAdaptor::IsHoriScroll() const include/svx/autoformathelper.hxx:145 _Bool AutoFormatBase::operator==(const AutoFormatBase &) const @@ -2044,6 +1912,8 @@ include/svx/ClassificationField.hxx:48 const rtl::OUString & svx::ClassificationResult::getDisplayText() const include/svx/ClassificationField.hxx:53 _Bool svx::ClassificationResult::operator==(const svx::ClassificationResult &) const +include/svx/ColorSets.hxx:102 + void svx::Theme::SetName(const rtl::OUString &) include/svx/diagram/IDiagramHelper.hxx:48 void svx::diagram::DiagramFrameHdl::clicked(const struct svx::diagram::Point &) include/svx/diagram/IDiagramHelper.hxx:94 @@ -2052,8 +1922,10 @@ include/svx/dlgctrl.hxx:263 void SvxLineEndLB::set_active_text(const rtl::OUString &) include/svx/framelink.hxx:168 _Bool svx::frame::operator>(const svx::frame::Style &,const svx::frame::Style &) -include/svx/gallery1.hxx:58 - const std::unique_ptr<GalleryFileStorageEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const +include/svx/gallery1.hxx:56 + const std::unique_ptr<GalleryBinaryEngineEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const +include/svx/gallerybinaryengine.hxx:59 + const INetURLObject & GalleryBinaryEngine::GetStrURL() const include/svx/hlnkitem.hxx:104 void SvxHyperlinkItem::SetReplacementText(const rtl::OUString &) include/svx/langbox.hxx:97 @@ -2064,7 +1936,7 @@ include/svx/svdlayer.hxx:74 _Bool SdrLayer::operator==(const SdrLayer &) const include/svx/svdpntv.hxx:445 _Bool SdrPaintView::IsSwapAsynchron() const -include/svx/svdtrans.hxx:246 +include/svx/svdtrans.hxx:242 _Bool IsMetric(enum MapUnit) include/svx/txencbox.hxx:81 void SvxTextEncodingBox::grab_focus() @@ -2072,50 +1944,6 @@ include/svx/txencbox.hxx:135 void SvxTextEncodingTreeView::connect_changed(const Link<weld::TreeView &, void> &) include/svx/xpoly.hxx:83 _Bool XPolygon::operator==(const XPolygon &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::tab::XTabPageContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::container::XContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const -include/toolkit/helper/listenermultiplexer.hxx:115 - void ListenerMultiplexerBase::notifyEach(void (com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &) const include/tools/bigint.hxx:76 BigInt::BigInt(unsigned int) include/tools/bigint.hxx:82 @@ -2162,6 +1990,8 @@ include/tools/fract.hxx:69 Fraction & Fraction::operator-=(double) include/tools/fract.hxx:91 _Bool operator>=(const Fraction &,const Fraction &) +include/tools/fract.hxx:107 + Fraction operator+(const Fraction &,double) include/tools/fract.hxx:108 Fraction operator-(const Fraction &,double) include/tools/fract.hxx:110 @@ -2180,8 +2010,6 @@ include/tools/gen.hxx:367 Pair & Range::toPair() include/tools/gen.hxx:430 Pair & Selection::toPair() -include/tools/json_writer.hxx:92 - void tools::JsonWriter::closeDocument() include/tools/link.hxx:134 const char * Link::getSourceFilename() const include/tools/link.hxx:135 @@ -2192,7 +2020,7 @@ include/tools/poly.hxx:162 _Bool tools::Polygon::operator!=(const tools::Polygon &) const include/tools/poly.hxx:250 _Bool tools::PolyPolygon::operator!=(const tools::PolyPolygon &) const -include/tools/stream.hxx:515 +include/tools/stream.hxx:516 rtl::OString read_uInt32_lenPrefixed_uInt8s_ToOString(SvStream &) include/tools/urlobj.hxx:447 _Bool INetURLObject::SetHost(std::basic_string_view<char16_t>) @@ -2248,17 +2076,15 @@ include/unotools/textsearch.hxx:121 basic_ostream<type-parameter-?-?, type-parameter-?-?> & utl::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const enum utl::SearchParam::SearchType &) include/unotools/weakref.hxx:73 unotools::WeakReference::WeakReference<interface_type>(type-parameter-?-? &) +include/vcl/alpha.hxx:46 + _Bool AlphaMask::operator==(const AlphaMask &) const include/vcl/alpha.hxx:47 _Bool AlphaMask::operator!=(const AlphaMask &) const -include/vcl/alpha.hxx:72 - void AlphaMask::ImplSetBitmap(const Bitmap &) include/vcl/animate/Animation.hxx:42 _Bool Animation::operator!=(const Animation &) const include/vcl/animate/AnimationFrame.hxx:67 _Bool AnimationFrame::operator!=(const struct AnimationFrame &) const -include/vcl/bitmap.hxx:400 - _Bool Bitmap::Replace(const Bitmap &,const Color &) -include/vcl/bitmap.hxx:539 +include/vcl/bitmap.hxx:526 const basegfx::SystemDependentDataHolder * Bitmap::accessSystemDependentDataHolder() const include/vcl/BitmapBasicMorphologyFilter.hxx:63 BitmapDilateFilter::BitmapDilateFilter(int,unsigned char) @@ -2267,11 +2093,11 @@ include/vcl/BitmapReadAccess.hxx:87 include/vcl/BitmapReadAccess.hxx:107 unsigned char BitmapReadAccess::GetPixelIndex(const Point &) const include/vcl/builder.hxx:107 - const rtl::OUString & VclBuilder::getUIFile() const + const rtl::OString & VclBuilder::getUIFile() const include/vcl/builder.hxx:333 - void VclBuilder::connectNumericFormatterAdjustment(const rtl::OUString &,const rtl::OUString &) + void VclBuilder::connectNumericFormatterAdjustment(const rtl::OString &,const rtl::OUString &) include/vcl/builderpage.hxx:36 - void BuilderPage::SetHelpId(const rtl::OUString &) + void BuilderPage::SetHelpId(const rtl::OString &) include/vcl/ColorMask.hxx:110 void ColorMask::GetColorFor16BitMSB(BitmapColor &,const unsigned char *) const include/vcl/ColorMask.hxx:111 @@ -2322,7 +2148,7 @@ include/vcl/GestureEventRotate.hxx:36 GestureEventRotate::GestureEventRotate(int,int,enum GestureEventRotateType,double) include/vcl/GestureEventZoom.hxx:36 GestureEventZoom::GestureEventZoom(int,int,enum GestureEventZoomType,double) -include/vcl/gradient.hxx:88 +include/vcl/gradient.hxx:87 _Bool Gradient::operator!=(const Gradient &) const include/vcl/hatch.hxx:57 _Bool Hatch::operator!=(const Hatch &) const @@ -2330,7 +2156,7 @@ include/vcl/inputctx.hxx:63 _Bool InputContext::operator!=(const InputContext &) const include/vcl/ITiledRenderable.hxx:237 enum PointerStyle vcl::ITiledRenderable::getPointer() -include/vcl/jsdialog/executor.hxx:57 +include/vcl/jsdialog/executor.hxx:47 void LOKTrigger::trigger_clicked(weld::Button &) include/vcl/kernarray.hxx:64 int KernArray::get_subunit(unsigned long) const @@ -2362,6 +2188,28 @@ include/vcl/lazydelete.hxx:93 std::optional<struct (anonymous namespace)::WavyLineCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) include/vcl/lok.hxx:23 void vcl::lok::unregisterPollCallbacks() +include/vcl/menubarupdateicon.hxx:74 + MenuBarUpdateIconManager::MenuBarUpdateIconManager() +include/vcl/menubarupdateicon.hxx:77 + void MenuBarUpdateIconManager::SetShowMenuIcon(_Bool) +include/vcl/menubarupdateicon.hxx:78 + void MenuBarUpdateIconManager::SetShowBubble(_Bool) +include/vcl/menubarupdateicon.hxx:79 + void MenuBarUpdateIconManager::SetBubbleImage(const Image &) +include/vcl/menubarupdateicon.hxx:80 + void MenuBarUpdateIconManager::SetBubbleTitle(const rtl::OUString &) +include/vcl/menubarupdateicon.hxx:81 + void MenuBarUpdateIconManager::SetBubbleText(const rtl::OUString &) +include/vcl/menubarupdateicon.hxx:83 + void MenuBarUpdateIconManager::SetClickHdl(const Link<LinkParamNone *, void> &) +include/vcl/menubarupdateicon.hxx:85 + _Bool MenuBarUpdateIconManager::GetShowMenuIcon() const +include/vcl/menubarupdateicon.hxx:86 + _Bool MenuBarUpdateIconManager::GetShowBubble() const +include/vcl/menubarupdateicon.hxx:87 + const rtl::OUString & MenuBarUpdateIconManager::GetBubbleTitle() const +include/vcl/menubarupdateicon.hxx:88 + const rtl::OUString & MenuBarUpdateIconManager::GetBubbleText() const include/vcl/opengl/OpenGLHelper.hxx:70 void OpenGLHelper::renderToFile(long,long,const rtl::OUString &) include/vcl/opengl/OpenGLHelper.hxx:103 @@ -2372,14 +2220,12 @@ include/vcl/outdev.hxx:1616 basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const basegfx::B2DPolyPolygon &,const MapMode &) const include/vcl/outdev.hxx:1634 basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const basegfx::B2DPolyPolygon &,const MapMode &) const -include/vcl/pdfextoutdevdata.hxx:112 +include/vcl/pdfextoutdevdata.hxx:108 _Bool vcl::PDFExtOutDevData::GetIsExportNotesInMargin() const include/vcl/salnativewidgets.hxx:408 _Bool TabitemValue::isBothAligned() const include/vcl/salnativewidgets.hxx:409 _Bool TabitemValue::isNotAligned() const -include/vcl/settings.hxx:427 - const Color & StyleSettings::GetAlternatingRowColor() const include/vcl/settings.hxx:438 void StyleSettings::SetUseFlatBorders(_Bool) include/vcl/settings.hxx:441 @@ -2390,22 +2236,16 @@ include/vcl/settings.hxx:518 void StyleSettings::SetSpinSize(int) include/vcl/settings.hxx:551 Size StyleSettings::GetToolbarIconSizePixel() const -include/vcl/settings.hxx:650 - int MiscSettings::GetDarkMode() -include/vcl/settings.hxx:673 +include/vcl/settings.hxx:667 _Bool HelpSettings::operator!=(const HelpSettings &) const -include/vcl/settings.hxx:734 +include/vcl/settings.hxx:728 _Bool AllSettings::operator!=(const AllSettings &) const include/vcl/split.hxx:92 void Splitter::SetHorizontal(_Bool) -include/vcl/svapp.hxx:167 +include/vcl/svapp.hxx:163 ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,std::vector<rtl::OUString> &&) -include/vcl/svapp.hxx:809 +include/vcl/svapp.hxx:805 void Application::AppEvent(const ApplicationEvent &) -include/vcl/svapp.hxx:1319 - void Application::EndAllDialogs() -include/vcl/svapp.hxx:1323 - void Application::EndAllPopups() include/vcl/TaskStopwatch.hxx:91 void TaskStopwatch::reset() include/vcl/TaskStopwatch.hxx:102 @@ -2422,7 +2262,7 @@ include/vcl/toolkit/longcurr.hxx:47 BigInt LongCurrencyFormatter::GetValue() const include/vcl/toolkit/treelist.hxx:170 const SvTreeListEntry * SvTreeList::GetParent(const SvTreeListEntry *) const -include/vcl/toolkit/treelistbox.hxx:366 +include/vcl/toolkit/treelistbox.hxx:368 void SvTreeListBox::RemoveSelection() include/vcl/txtattr.hxx:56 _Bool TextAttrib::operator!=(const TextAttrib &) const @@ -2436,65 +2276,67 @@ include/vcl/uitest/uiobject.hxx:382 SpinUIObject::SpinUIObject(const VclPtr<SpinButton> &) include/vcl/uitest/uiobject.hxx:390 std::unique_ptr<UIObject> SpinUIObject::create(vcl::Window *) -include/vcl/weld.hxx:185 +include/vcl/weld.hxx:184 _Bool weld::Widget::get_hexpand() const -include/vcl/weld.hxx:187 +include/vcl/weld.hxx:186 _Bool weld::Widget::get_vexpand() const -include/vcl/weld.hxx:194 +include/vcl/weld.hxx:193 int weld::Widget::get_margin_top() const -include/vcl/weld.hxx:195 +include/vcl/weld.hxx:194 int weld::Widget::get_margin_bottom() const -include/vcl/weld.hxx:423 +include/vcl/weld.hxx:414 void weld::ScrolledWindow::hadjustment_set_upper(int) -include/vcl/weld.hxx:426 +include/vcl/weld.hxx:416 + void weld::ScrolledWindow::hadjustment_set_page_size(int) +include/vcl/weld.hxx:417 void weld::ScrolledWindow::hadjustment_set_page_increment(int) -include/vcl/weld.hxx:427 +include/vcl/weld.hxx:418 void weld::ScrolledWindow::hadjustment_set_step_increment(int) -include/vcl/weld.hxx:568 +include/vcl/weld.hxx:557 struct SystemEnvData weld::Window::get_system_data() const -include/vcl/weld.hxx:653 - rtl::OUString weld::Assistant::get_current_page_ident() const -include/vcl/weld.hxx:659 - rtl::OUString weld::Assistant::get_page_title(const rtl::OUString &) const -include/vcl/weld.hxx:1073 +include/vcl/weld.hxx:641 + rtl::OString weld::Assistant::get_current_page_ident() const +include/vcl/weld.hxx:647 + rtl::OUString weld::Assistant::get_page_title(const rtl::OString &) const +include/vcl/weld.hxx:1061 _Bool weld::TreeView::get_sensitive(int,int) const -include/vcl/weld.hxx:1176 +include/vcl/weld.hxx:1164 void weld::TreeView::set_text_align(const weld::TreeIter &,double,int) -include/vcl/weld.hxx:1346 +include/vcl/weld.hxx:1334 const rtl::OUString & weld::TreeView::get_saved_value() const -include/vcl/weld.hxx:1460 +include/vcl/weld.hxx:1448 _Bool weld::IconView::get_cursor(weld::TreeIter *) const -include/vcl/weld.hxx:1470 +include/vcl/weld.hxx:1458 void weld::IconView::select_all() -include/vcl/weld.hxx:1476 +include/vcl/weld.hxx:1464 void weld::IconView::save_value() -include/vcl/weld.hxx:1477 +include/vcl/weld.hxx:1465 const rtl::OUString & weld::IconView::get_saved_value() const -include/vcl/weld.hxx:1478 +include/vcl/weld.hxx:1466 _Bool weld::IconView::get_value_changed_from_saved() const -include/vcl/weld.hxx:1607 +include/vcl/weld.hxx:1593 void weld::MenuButton::append_item_radio(const rtl::OUString &,const rtl::OUString &) -include/vcl/weld.hxx:1615 +include/vcl/weld.hxx:1601 void weld::MenuButton::append_item(const rtl::OUString &,const rtl::OUString &,VirtualDevice &) -include/vcl/weld.hxx:1696 +include/vcl/weld.hxx:1682 rtl::OUString weld::ProgressBar::get_text() const -include/vcl/weld.hxx:1906 +include/vcl/weld.hxx:1892 void weld::EntryTreeView::EntryModifyHdl(const weld::Entry &) -include/vcl/weld.hxx:2142 +include/vcl/weld.hxx:2128 Size weld::MetricSpinButton::get_size_request() const -include/vcl/weld.hxx:2154 +include/vcl/weld.hxx:2140 void weld::MetricSpinButton::set_position(int) -include/vcl/weld.hxx:2258 +include/vcl/weld.hxx:2244 int weld::TextView::vadjustment_get_lower() const -include/vcl/weld.hxx:2486 - rtl::OUString weld::Toolbar::get_item_label(const rtl::OUString &) const -include/vcl/weld.hxx:2534 +include/vcl/weld.hxx:2466 + rtl::OUString weld::Toolbar::get_item_label(const rtl::OString &) const +include/vcl/weld.hxx:2511 void weld::Scrollbar::adjustment_configure(int,int,int,int,int,int) -include/vcl/weld.hxx:2550 +include/vcl/weld.hxx:2527 int weld::Scrollbar::get_scroll_thickness() const -include/vcl/weld.hxx:2579 - std::unique_ptr<weld::MenuToggleButton> weld::Builder::weld_menu_toggle_button(const rtl::OUString &) -include/vcl/weld.hxx:2691 +include/vcl/weld.hxx:2556 + std::unique_ptr<weld::MenuToggleButton> weld::Builder::weld_menu_toggle_button(const rtl::OString &) +include/vcl/weld.hxx:2668 rtl::OUString weld::MessageDialogController::get_secondary_text() const include/vcl/weldutils.hxx:198 const com::sun::star::uno::Reference<com::sun::star::frame::XFrame> & weld::WidgetStatusListener::getFrame() const @@ -2538,39 +2380,33 @@ o3tl/qa/cow_wrapper_clients.hxx:142 _Bool o3tltests::cow_wrapper_client4::operator<(const o3tltests::cow_wrapper_client4 &) const o3tl/qa/cow_wrapper_clients.hxx:193 _Bool o3tltests::cow_wrapper_client5::operator!=(const o3tltests::cow_wrapper_client5 &) const -oox/inc/drawingml/textfont.hxx:55 - void oox::drawingml::TextFont::fillThemeFont(struct model::ThemeFont &) const oox/inc/drawingml/textliststyle.hxx:61 void oox::drawingml::TextListStyle::dump() const -oox/inc/drawingml/textparagraphproperties.hxx:98 +oox/inc/drawingml/textparagraphproperties.hxx:97 void oox::drawingml::TextParagraphProperties::setLineSpacing(const oox::drawingml::TextSpacing &) oox/source/drawingml/diagram/diagramlayoutatoms.hxx:331 const std::vector<std::shared_ptr<oox::drawingml::Shape> > & oox::drawingml::LayoutNode::getNodeShapes() const oox/source/drawingml/diagram/diagramlayoutatoms.hxx:340 const oox::drawingml::LayoutNode * oox::drawingml::LayoutNode::getParentLayoutNode() const -package/inc/ByteChucker.hxx:74 - void ByteChucker::WriteInt64(long) -package/source/zipapi/MemoryByteGrabber.hxx:95 - long MemoryByteGrabber::ReadInt64() sal/osl/unx/uunxapi.hxx:39 int mkdir_c(const rtl::OString &,unsigned int) sal/osl/unx/uunxapi.hxx:74 int osl::lstat(const rtl::OUString &,struct stat &) -sal/rtl/strtmpl.hxx:57 +sal/rtl/strtmpl.hxx:55 null_terminated<C> rtl::str::<deduction guide for null_terminated>(null_terminated<C>) -sal/rtl/strtmpl.hxx:60 +sal/rtl/strtmpl.hxx:58 null_terminated<C> rtl::str::<deduction guide for null_terminated>(type-parameter-?-? *) -sal/rtl/strtmpl.hxx:68 +sal/rtl/strtmpl.hxx:66 _Bool rtl::str::operator==(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *) -sal/rtl/strtmpl.hxx:70 +sal/rtl/strtmpl.hxx:68 _Bool rtl::str::operator!=(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *) -sal/rtl/strtmpl.hxx:76 +sal/rtl/strtmpl.hxx:74 with_length<C> rtl::str::<deduction guide for with_length>(with_length<C>) -sal/rtl/strtmpl.hxx:80 +sal/rtl/strtmpl.hxx:78 with_length<C> rtl::str::<deduction guide for with_length>(type-parameter-?-? *,int) -sal/rtl/strtmpl.hxx:98 +sal/rtl/strtmpl.hxx:112 FromTo<C> rtl::str::<deduction guide for FromTo>(FromTo<C>) -sal/rtl/strtmpl.hxx:102 +sal/rtl/strtmpl.hxx:116 FromTo<C> rtl::str::<deduction guide for FromTo>(type-parameter-?-?,type-parameter-?-?) sc/inc/address.hxx:663 _Bool ScRange::operator<=(const ScRange &) const @@ -2596,15 +2432,11 @@ sc/inc/datamapper.hxx:78 void sc::ExternalDataSource::setURL(const rtl::OUString &) sc/inc/datamapper.hxx:79 void sc::ExternalDataSource::setProvider(const rtl::OUString &) -sc/inc/document.hxx:896 +sc/inc/document.hxx:895 rtl::OUString ScDocument::MaxRowAsString() const -sc/inc/document.hxx:2039 - int ScDocument::CountHiddenRows(int,int,short) const -sc/inc/document.hxx:2040 - short ScDocument::CountHiddenCols(int,int,short) const sc/inc/dpfilteredcache.hxx:148 void ScDPFilteredCache::dump() const -sc/inc/formulacell.hxx:511 +sc/inc/formulacell.hxx:510 void ScFormulaCell::Dump() const sc/inc/funcuno.hxx:35 com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScFunctionAccess_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) @@ -2625,55 +2457,53 @@ sc/inc/kahan.hxx:198 sc/inc/miscuno.hxx:180 void ScUnoHelpFunctions::SetOptionalPropertyValue(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &,const char *,const type-parameter-?-? &) sc/inc/mtvcellfunc.hxx:40 - mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct sc::CellStoreTraits>::iterator_trait> sc::ProcessFormula(const mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct sc::CellStoreTraits>::iterator_trait> &,mdds::mtv::soa::multi_type_vector<struct sc::CellStoreTraits> &,int,int,std::function<void (unsigned long, ScFormulaCell *)>) -sc/inc/mtvelements.hxx:78 + mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> sc::ProcessFormula(const mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> &,mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv ::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait> &,int,int,std::function<void (unsigned long, ScFormulaCell *)>) +sc/inc/mtvelements.hxx:79 mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:78 - void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:79 + void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:80 mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:79 +sc/inc/mtvelements.hxx:80 void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:83 +sc/inc/mtvelements.hxx:84 mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:83 - void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:84 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 mdds::mtv::base_element_block * mdds_mtv_create_new_block(const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:84 +sc/inc/mtvelements.hxx:85 void mdds_mtv_append_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:84 +sc/inc/mtvelements.hxx:85 void mdds_mtv_assign_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:84 +sc/inc/mtvelements.hxx:85 void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:84 +sc/inc/mtvelements.hxx:85 void mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:84 - void mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:85 + void mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:86 mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:85 +sc/inc/mtvelements.hxx:86 void mdds_mtv_get_empty_value(ScFormulaCell *&) -sc/inc/mtvelements.hxx:85 +sc/inc/mtvelements.hxx:86 void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,ScFormulaCell *&) -sc/inc/mtvelements.hxx:85 - void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:86 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:87 mdds::mtv::base_element_block * mdds_mtv_create_new_block(const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:86 +sc/inc/mtvelements.hxx:87 void mdds_mtv_get_empty_value(EditTextObject *&) -sc/inc/mtvelements.hxx:86 +sc/inc/mtvelements.hxx:87 void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,EditTextObject *&) -sc/inc/mtvelements.hxx:86 +sc/inc/mtvelements.hxx:87 void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:89 +sc/inc/mtvelements.hxx:90 mdds::mtv::base_element_block * svl::mdds_mtv_create_new_block(const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:89 +sc/inc/mtvelements.hxx:90 void svl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvfunctions.hxx:376 ... etc. - the rest is truncated