summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-05-19 13:35:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-05-20 12:55:07 +0200
commit8270eb5d5600cc84dbf5f0e339f90c4519ef88bb (patch)
tree6253324edd37e5b13c17436a6378ee58ba6a723b
parent4f3dd930324552aec40b333d750ec7b95ff03c26 (diff)
loplugin:unusedmethods
Change-Id: Ief95f111350808f010539bb733a553007d30a9df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152006 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--basegfx/test/B2DPolyPolygonTest.cxx1
-rw-r--r--basegfx/test/boxclipper.cxx9
-rw-r--r--basegfx/test/boxclipper.hxx31
-rw-r--r--compilerplugins/clang/unusedmethods.results1100
-rw-r--r--compilerplugins/clang/unusedmethods.unused-returns.results124
-rw-r--r--cui/source/inc/optdict.hxx1
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx11
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx2
-rw-r--r--include/svx/gallery1.hxx2
-rw-r--r--include/vcl/alpha.hxx1
-rw-r--r--include/vcl/bitmap.hxx12
-rw-r--r--include/vcl/svapp.hxx8
-rw-r--r--package/inc/ByteChucker.hxx13
-rw-r--r--package/source/zipapi/MemoryByteGrabber.hxx16
-rw-r--r--sc/inc/document.hxx2
-rw-r--r--sc/source/core/data/document.cxx16
-rw-r--r--sc/source/filter/xml/XMLExportIterator.hxx1
-rw-r--r--sd/source/ui/inc/SlideSorter.hxx3
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorter.cxx101
-rw-r--r--svx/inc/galleryfilestorage.hxx1
-rw-r--r--sw/inc/ndarr.hxx4
-rw-r--r--sw/inc/ndtxt.hxx4
-rw-r--r--sw/source/core/draw/dflyobj.cxx6
-rw-r--r--sw/source/core/graphic/ndgrf.cxx8
-rw-r--r--sw/source/core/inc/dflyobj.hxx1
-rw-r--r--sw/source/core/txtnode/ndtxt.cxx27
-rw-r--r--sw/source/filter/ww8/writerhelper.cxx11
-rw-r--r--sw/source/filter/ww8/writerhelper.hxx2
-rw-r--r--sw/source/filter/ww8/ww8par.hxx2
-rw-r--r--sw/source/filter/ww8/ww8par2.cxx39
-rw-r--r--vcl/inc/unx/saldisp.hxx3
-rw-r--r--vcl/inc/unx/salgdi.h1
-rw-r--r--vcl/source/app/svapp.cxx10
-rw-r--r--vcl/source/bitmap/alpha.cxx7
-rw-r--r--vcl/source/bitmap/bitmappaint.cxx75
-rw-r--r--vcl/source/filter/graphicfilter.cxx18
-rw-r--r--vcl/source/filter/graphicfilter2.cxx1
-rw-r--r--vcl/source/filter/graphicfilter_internal.hxx27
-rw-r--r--vcl/unx/generic/app/saldisp.cxx63
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx8
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.hxx12
-rw-r--r--writerfilter/source/dmapper/PropertyMap.hxx1
42 files changed, 733 insertions, 1052 deletions
diff --git a/basegfx/test/B2DPolyPolygonTest.cxx b/basegfx/test/B2DPolyPolygonTest.cxx
index f51d396b8578..5319e6b46967 100644
--- a/basegfx/test/B2DPolyPolygonTest.cxx
+++ b/basegfx/test/B2DPolyPolygonTest.cxx
@@ -24,7 +24,6 @@
#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 b65f25bae425..d58806cb739e 100644
--- a/basegfx/test/boxclipper.cxx
+++ b/basegfx/test/boxclipper.cxx
@@ -31,19 +31,10 @@
#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
deleted file mode 100644
index 03aad0d2ba74..000000000000
--- a/basegfx/test/boxclipper.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-/* -*- 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 6af7aa1e9480..b7a344496442 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:93
+connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:91
type-parameter-?-? connectivity::mysqlc::OPreparedResultSet::safelyRetrieveValue(const int)
-connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:94
+connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:92
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,6 +100,26 @@ 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
@@ -114,28 +134,36 @@ 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>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::begin() const
+ __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int> > 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>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::end() const
+ __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int> > 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>, struct std::random_access_iterator_tag> 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> > 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>, struct std::random_access_iterator_tag> 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> > 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>, struct std::random_access_iterator_tag> 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> > 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>, struct std::random_access_iterator_tag> 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> > 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
@@ -167,11 +195,13 @@ 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>, struct std::random_access_iterator_tag> 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> > 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>, struct std::random_access_iterator_tag> 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> > 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
@@ -246,14 +276,10 @@ 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
@@ -262,16 +288,8 @@ 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:106
+include/basegfx/matrix/b2dhommatrix.hxx:114
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
@@ -290,6 +308,10 @@ 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
@@ -322,8 +344,6 @@ 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
@@ -378,6 +398,10 @@ 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
@@ -400,8 +424,6 @@ 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
@@ -416,11 +438,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:240
+include/comphelper/configuration.hxx:254
type-parameter-?-? comphelper::ConfigurationLocalizedProperty::get()
-include/comphelper/configuration.hxx:256
+include/comphelper/configuration.hxx:270
void comphelper::ConfigurationLocalizedProperty::set(const type-parameter-?-? &,const std::shared_ptr<comphelper::ConfigurationChanges> &)
-include/comphelper/configuration.hxx:291
+include/comphelper/configuration.hxx:305
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
@@ -458,57 +480,37 @@ 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
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
@@ -525,10 +527,6 @@ include/comphelper/interfacecontainer3.hxx:213
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
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
@@ -571,8 +569,6 @@ include/comphelper/interfacecontainer3.hxx:213
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
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XDatabaseRegistrationsListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
@@ -612,58 +608,118 @@ 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:95
+include/comphelper/interfacecontainer4.hxx:97
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(const OInterfaceIteratorHelper4<ListenerT> &)
-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/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/logging.hxx:58
rtl::OUString comphelper::log::convert::convertLogArgToString(char16_t)
include/comphelper/logging.hxx:224
@@ -700,16 +756,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:112
+include/comphelper/lok.hxx:117
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:57
- _Bool comphelper::OMultiTypeInterfaceContainerHelperVar4::hasContainedTypes() const
-include/comphelper/multiinterfacecontainer4.hxx:161
- void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear()
+include/comphelper/multiinterfacecontainer4.hxx:174
+ void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear(std::unique_lock<std::mutex> &)
include/comphelper/profilezone.hxx:56
comphelper::ProfileZone::ProfileZone(const char *,const std::map<rtl::OUString, rtl::OUString> &)
include/comphelper/propagg.hxx:59
@@ -720,6 +776,14 @@ 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
@@ -731,16 +795,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>, 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 *)
+ __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
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:215
+include/comphelper/traceevent.hxx:210
void comphelper::AsyncEvent::finish()
include/comphelper/unique_disposing_ptr.hxx:47
type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
@@ -754,32 +818,78 @@ 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:186
+include/connectivity/sqlparse.hxx:185
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:112
+include/drawinglayer/primitive3d/baseprimitive3d.hxx:111
_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: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/colritem.hxx:66
+ const Color & SvxColorItem::getColor() const
include/editeng/editeng.hxx:246
+ _Bool EditEngine::GetVertical() const
+include/editeng/editeng.hxx:248
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
@@ -792,7 +902,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:581
+include/formula/tokenarray.hxx:586
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
@@ -996,10 +1106,24 @@ 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
@@ -1032,10 +1156,6 @@ 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
@@ -1050,7 +1170,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:406
+include/sfx2/viewsh.hxx:451
enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const
include/svl/itemiter.hxx:44
_Bool SfxItemIter::IsAtEnd() const
@@ -1473,6 +1593,8 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontItem, derived_type>, int>::type)
@@ -1499,6 +1621,10 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHatchListItem, derived_type>, int>::type)
@@ -1517,6 +1643,8 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineItem, derived_type>, int>::type)
@@ -1575,6 +1703,10 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRsidItem, derived_type>, int>::type)
@@ -1593,8 +1725,12 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTwoLinesItem, derived_type>, int>::type)
@@ -1643,8 +1779,6 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawModeGrf, derived_type>, int>::type)
@@ -1693,6 +1827,8 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFooter, derived_type>, int>::type)
@@ -1769,8 +1905,6 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxFormula, derived_type>, int>::type)
@@ -1779,8 +1913,6 @@ include/svl/typedwhich.hxx:31
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
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTextFormatColl, derived_type>, int>::type)
@@ -1896,15 +2028,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:402
+include/svtools/ctrlbox.hxx:403
void FontStyleBox::set_size_request(int,int)
-include/svtools/ctrlbox.hxx:473
+include/svtools/ctrlbox.hxx:474
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:59
+include/svtools/scrolladaptor.hxx:60
_Bool ScrollAdaptor::IsHoriScroll() const
include/svx/autoformathelper.hxx:145
_Bool AutoFormatBase::operator==(const AutoFormatBase &) const
@@ -1912,8 +2044,6 @@ 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
@@ -1922,10 +2052,8 @@ 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:56
- const std::unique_ptr<GalleryBinaryEngineEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const
-include/svx/gallerybinaryengine.hxx:59
- const INetURLObject & GalleryBinaryEngine::GetStrURL() const
+include/svx/gallery1.hxx:58
+ const std::unique_ptr<GalleryFileStorageEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const
include/svx/hlnkitem.hxx:104
void SvxHyperlinkItem::SetReplacementText(const rtl::OUString &)
include/svx/langbox.hxx:97
@@ -1936,7 +2064,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:242
+include/svx/svdtrans.hxx:246
_Bool IsMetric(enum MapUnit)
include/svx/txencbox.hxx:81
void SvxTextEncodingBox::grab_focus()
@@ -1944,6 +2072,50 @@ 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
@@ -1990,8 +2162,6 @@ 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
@@ -2010,6 +2180,8 @@ 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
@@ -2020,7 +2192,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:516
+include/tools/stream.hxx:515
rtl::OString read_uInt32_lenPrefixed_uInt8s_ToOString(SvStream &)
include/tools/urlobj.hxx:447
_Bool INetURLObject::SetHost(std::basic_string_view<char16_t>)
@@ -2076,15 +2248,17 @@ 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:526
+include/vcl/bitmap.hxx:400
+ _Bool Bitmap::Replace(const Bitmap &,const Color &)
+include/vcl/bitmap.hxx:539
const basegfx::SystemDependentDataHolder * Bitmap::accessSystemDependentDataHolder() const
include/vcl/BitmapBasicMorphologyFilter.hxx:63
BitmapDilateFilter::BitmapDilateFilter(int,unsigned char)
@@ -2093,11 +2267,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::OString & VclBuilder::getUIFile() const
+ const rtl::OUString & VclBuilder::getUIFile() const
include/vcl/builder.hxx:333
- void VclBuilder::connectNumericFormatterAdjustment(const rtl::OString &,const rtl::OUString &)
+ void VclBuilder::connectNumericFormatterAdjustment(const rtl::OUString &,const rtl::OUString &)
include/vcl/builderpage.hxx:36
- void BuilderPage::SetHelpId(const rtl::OString &)
+ void BuilderPage::SetHelpId(const rtl::OUString &)
include/vcl/ColorMask.hxx:110
void ColorMask::GetColorFor16BitMSB(BitmapColor &,const unsigned char *) const
include/vcl/ColorMask.hxx:111
@@ -2148,7 +2322,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:87
+include/vcl/gradient.hxx:88
_Bool Gradient::operator!=(const Gradient &) const
include/vcl/hatch.hxx:57
_Bool Hatch::operator!=(const Hatch &) const
@@ -2156,7 +2330,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:47
+include/vcl/jsdialog/executor.hxx:57
void LOKTrigger::trigger_clicked(weld::Button &)
include/vcl/kernarray.hxx:64
int KernArray::get_subunit(unsigned long) const
@@ -2188,28 +2362,6 @@ 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
@@ -2220,12 +2372,14 @@ 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:108
+include/vcl/pdfextoutdevdata.hxx:112
_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
@@ -2236,16 +2390,22 @@ include/vcl/settings.hxx:518
void StyleSettings::SetSpinSize(int)
include/vcl/settings.hxx:551
Size StyleSettings::GetToolbarIconSizePixel() const
-include/vcl/settings.hxx:667
+include/vcl/settings.hxx:650
+ int MiscSettings::GetDarkMode()
+include/vcl/settings.hxx:673
_Bool HelpSettings::operator!=(const HelpSettings &) const
-include/vcl/settings.hxx:728
+include/vcl/settings.hxx:734
_Bool AllSettings::operator!=(const AllSettings &) const
include/vcl/split.hxx:92
void Splitter::SetHorizontal(_Bool)
-include/vcl/svapp.hxx:163
+include/vcl/svapp.hxx:167
ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,std::vector<rtl::OUString> &&)
-include/vcl/svapp.hxx:805
+include/vcl/svapp.hxx:809
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
@@ -2262,7 +2422,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:368
+include/vcl/toolkit/treelistbox.hxx:366
void SvTreeListBox::RemoveSelection()
include/vcl/txtattr.hxx:56
_Bool TextAttrib::operator!=(const TextAttrib &) const
@@ -2276,67 +2436,65 @@ 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:184
+include/vcl/weld.hxx:185
_Bool weld::Widget::get_hexpand() const
-include/vcl/weld.hxx:186
+include/vcl/weld.hxx:187
_Bool weld::Widget::get_vexpand() const
-include/vcl/weld.hxx:193
- int weld::Widget::get_margin_top() const
include/vcl/weld.hxx:194
+ int weld::Widget::get_margin_top() const
+include/vcl/weld.hxx:195
int weld::Widget::get_margin_bottom() const
-include/vcl/weld.hxx:414
+include/vcl/weld.hxx:423
void weld::ScrolledWindow::hadjustment_set_upper(int)
-include/vcl/weld.hxx:416
- void weld::ScrolledWindow::hadjustment_set_page_size(int)
-include/vcl/weld.hxx:417
+include/vcl/weld.hxx:426
void weld::ScrolledWindow::hadjustment_set_page_increment(int)
-include/vcl/weld.hxx:418
+include/vcl/weld.hxx:427
void weld::ScrolledWindow::hadjustment_set_step_increment(int)
-include/vcl/weld.hxx:557
+include/vcl/weld.hxx:568
struct SystemEnvData weld::Window::get_system_data() const
-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
+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
_Bool weld::TreeView::get_sensitive(int,int) const
-include/vcl/weld.hxx:1164
+include/vcl/weld.hxx:1176
void weld::TreeView::set_text_align(const weld::TreeIter &,double,int)
-include/vcl/weld.hxx:1334
+include/vcl/weld.hxx:1346
const rtl::OUString & weld::TreeView::get_saved_value() const
-include/vcl/weld.hxx:1448
+include/vcl/weld.hxx:1460
_Bool weld::IconView::get_cursor(weld::TreeIter *) const
-include/vcl/weld.hxx:1458
+include/vcl/weld.hxx:1470
void weld::IconView::select_all()
-include/vcl/weld.hxx:1464
+include/vcl/weld.hxx:1476
void weld::IconView::save_value()
-include/vcl/weld.hxx:1465
+include/vcl/weld.hxx:1477
const rtl::OUString & weld::IconView::get_saved_value() const
-include/vcl/weld.hxx:1466
+include/vcl/weld.hxx:1478
_Bool weld::IconView::get_value_changed_from_saved() const
-include/vcl/weld.hxx:1593
+include/vcl/weld.hxx:1607
void weld::MenuButton::append_item_radio(const rtl::OUString &,const rtl::OUString &)
-include/vcl/weld.hxx:1601
+include/vcl/weld.hxx:1615
void weld::MenuButton::append_item(const rtl::OUString &,const rtl::OUString &,VirtualDevice &)
-include/vcl/weld.hxx:1682
+include/vcl/weld.hxx:1696
rtl::OUString weld::ProgressBar::get_text() const
-include/vcl/weld.hxx:1892
+include/vcl/weld.hxx:1906
void weld::EntryTreeView::EntryModifyHdl(const weld::Entry &)
-include/vcl/weld.hxx:2128
+include/vcl/weld.hxx:2142
Size weld::MetricSpinButton::get_size_request() const
-include/vcl/weld.hxx:2140
+include/vcl/weld.hxx:2154
void weld::MetricSpinButton::set_position(int)
-include/vcl/weld.hxx:2244
+include/vcl/weld.hxx:2258
int weld::TextView::vadjustment_get_lower() const
-include/vcl/weld.hxx:2466
- rtl::OUString weld::Toolbar::get_item_label(const rtl::OString &) const
-include/vcl/weld.hxx:2511
+include/vcl/weld.hxx:2486
+ rtl::OUString weld::Toolbar::get_item_label(const rtl::OUString &) const
+include/vcl/weld.hxx:2534
void weld::Scrollbar::adjustment_configure(int,int,int,int,int,int)
-include/vcl/weld.hxx:2527
+include/vcl/weld.hxx:2550
int weld::Scrollbar::get_scroll_thickness() const
-include/vcl/weld.hxx:2556
- std::unique_ptr<weld::MenuToggleButton> weld::Builder::weld_menu_toggle_button(const rtl::OString &)
-include/vcl/weld.hxx:2668
+include/vcl/weld.hxx:2579
+ std::unique_ptr<weld::MenuToggleButton> weld::Builder::weld_menu_toggle_button(const rtl::OUString &)
+include/vcl/weld.hxx:2691
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
@@ -2380,33 +2538,39 @@ 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:97
+oox/inc/drawingml/textparagraphproperties.hxx:98
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:55
+sal/rtl/strtmpl.hxx:57
null_terminated<C> rtl::str::<deduction guide for null_terminated>(null_terminated<C>)
-sal/rtl/strtmpl.hxx:58
+sal/rtl/strtmpl.hxx:60
null_terminated<C> rtl::str::<deduction guide for null_terminated>(type-parameter-?-? *)
-sal/rtl/strtmpl.hxx:66
- _Bool rtl::str::operator==(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *)
sal/rtl/strtmpl.hxx:68
+ _Bool rtl::str::operator==(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *)
+sal/rtl/strtmpl.hxx:70
_Bool rtl::str::operator!=(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *)
-sal/rtl/strtmpl.hxx:74
+sal/rtl/strtmpl.hxx:76
with_length<C> rtl::str::<deduction guide for with_length>(with_length<C>)
-sal/rtl/strtmpl.hxx:78
+sal/rtl/strtmpl.hxx:80
with_length<C> rtl::str::<deduction guide for with_length>(type-parameter-?-? *,int)
-sal/rtl/strtmpl.hxx:112
+sal/rtl/strtmpl.hxx:98
FromTo<C> rtl::str::<deduction guide for FromTo>(FromTo<C>)
-sal/rtl/strtmpl.hxx:116
+sal/rtl/strtmpl.hxx:102
FromTo<C> rtl::str::<deduction guide for FromTo>(type-parameter-?-?,type-parameter-?-?)
sc/inc/address.hxx:663
_Bool ScRange::operator<=(const ScRange &) const
@@ -2432,11 +2596,15 @@ 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:895
+sc/inc/document.hxx:896
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:510
+sc/inc/formulacell.hxx:511
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> &)
@@ -2457,53 +2625,55 @@ 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 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::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::base_element_block * sc::mdds_mtv_create_new_block(const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:79
+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:80
+sc/inc/mtvelements.hxx:79
mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:80
+sc/inc/mtvelements.hxx:79
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:84
+sc/inc/mtvelements.hxx:83
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:84
+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:85
+sc/inc/mtvelements.hxx:84
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:85
+sc/inc/mtvelements.hxx:84
void mdds_mtv_append_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:85
+sc/inc/mtvelements.hxx:84
void mdds_mtv_assign_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:85
+sc/inc/mtvelements.hxx:84
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:85
+sc/inc/mtvelements.hxx:84
void mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:85
+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:86
+sc/inc/mtvelements.hxx:85
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:86
+sc/inc/mtvelements.hxx:85
void mdds_mtv_get_empty_value(ScFormulaCell *&)
-sc/inc/mtvelements.hxx:86
+sc/inc/mtvelements.hxx:85
void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,ScFormulaCell *&)
-sc/inc/mtvelements.hxx:86
+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:87
+sc/inc/mtvelements.hxx:86
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:87
+sc/inc/mtvelements.hxx:86
void mdds_mtv_get_empty_value(EditTextObject *&)
-sc/inc/mtvelements.hxx:87
+sc/inc/mtvelements.hxx:86
void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,EditTextObject *&)
-sc/inc/mtvelements.hxx:87
+sc/inc/mtvelements.hxx:86
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:90
+sc/inc/mtvelements.hxx:89
mdds::mtv::base_element_block * svl::mdds_mtv_create_new_block(const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &)
-sc/inc/mtvelements.hxx:90
+sc/inc/mtvelements.hxx:89
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
void sc::ProcessElements2(type-parameter-?-? &,type-parameter-?-? &,type-parameter-?-? &)
+sc/inc/rangecache.hxx:52
+ _Bool ScSortedRangeCache::isValid() const
sc/inc/rangecache.hxx:94
unsigned long ScSortedRangeCache::size() const
sc/inc/scdll.hxx:35
@@ -2534,17 +2704,17 @@ sc/inc/stlalgorithm.hxx:60
_Bool sc::AlignedAllocator::operator==(const AlignedAllocator<T, Alignment> &) const
sc/inc/stlalgorithm.hxx:61
_Bool sc::AlignedAllocator::operator!=(const AlignedAllocator<T, Alignment> &) const
-sc/inc/table.hxx:344
+sc/inc/table.hxx:349
_Bool ScTable::IsColRowTabValid(const short,const int,const short) const
-sc/inc/table.hxx:741
+sc/inc/table.hxx:748
const type-parameter-?-? * ScTable::GetAttr(short,int,TypedWhichId<type-parameter-?-?>,int &,int &) const
sc/inc/userlist.hxx:89
- __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<ScUserListData> *, std::__cxx1998::vector<std::unique_ptr<ScUserListData> > >, std::vector<std::unique_ptr<ScUserListData> >, struct std::random_access_iterator_tag> ScUserList::begin() const
+ __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<ScUserListData> *, std::__cxx1998::vector<std::unique_ptr<ScUserListData> > >, std::vector<std::unique_ptr<ScUserListData> > > ScUserList::begin() const
sc/qa/unit/helper/qahelper.hxx:77
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const enum OpCode &)
sc/qa/unit/helper/qahelper.hxx:83
std::basic_string<char> print(const ScAddress &)
-sc/qa/unit/ucalc_copypaste.cxx:10910
+sc/qa/unit/ucalc_copypaste.cxx:10712
int main()
sc/source/core/inc/interpre.hxx:71
basic_ostream<type-parameter-?-?, type-parameter-?-?> & sc::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const struct sc::ParamIfsResult &)
@@ -2572,11 +2742,11 @@ sc/source/core/opencl/opbase.hxx:487
_Bool sc::opencl::ParallelReductionVectorRef::GetStartFixed() const
sc/source/core/opencl/opbase.hxx:488
_Bool sc::opencl::ParallelReductionVectorRef::GetEndFixed() const
-sc/source/core/tool/scmatrix.cxx:2263
+sc/source/core/tool/scmatrix.cxx:2296
type-parameter-?-? * (anonymous namespace)::wrapped_iterator::operator->() const
-sc/source/filter/inc/orcusinterface.hxx:76
+sc/source/filter/inc/orcusinterface.hxx:77
ScOrcusRefResolver::ScOrcusRefResolver(const ScOrcusGlobalSettings &)
-sc/source/filter/inc/orcusinterface.hxx:632
+sc/source/filter/inc/orcusinterface.hxx:735
const rtl::OUString * ScOrcusFactory::getString(unsigned long) const
sc/source/filter/inc/tokstack.hxx:213
_Bool TokenPool::GrowTripel(unsigned short)
@@ -2594,10 +2764,12 @@ sc/source/filter/inc/xerecord.hxx:365
void XclExpRecordList::AppendNewRecord(Reference<type-parameter-?-?>)
sc/source/filter/inc/xestream.hxx:106
XclExpStream & XclExpStream::operator<<(float)
-sc/source/filter/inc/xiescher.hxx:153
+sc/source/filter/inc/xiescher.hxx:154
Color XclImpDrawObjBase::GetSolidLineColor(const struct XclObjLineData &) const
sc/source/filter/inc/xlformula.hxx:408
_Bool XclTokenArray::operator==(const XclTokenArray &) const
+sc/source/filter/xml/XMLExportIterator.hxx:88
+ _Bool ScMyShapesContainer::HasShapes() const
sc/source/filter/xml/xmltransformationi.hxx:159
ScXMLDateTimeContext::ScXMLDateTimeContext(ScXMLImport &,const rtl::Reference<sax_fastparser::FastAttributeList> &)
sc/source/ui/inc/dataprovider.hxx:56
@@ -2640,7 +2812,7 @@ sc/source/ui/inc/hfedtdlg.hxx:85
ScHFEditFirstHeaderDlg::ScHFEditFirstHeaderDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>)
sc/source/ui/inc/hfedtdlg.hxx:106
ScHFEditFirstFooterDlg::ScHFEditFirstFooterDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>)
-sc/source/ui/inc/impex.hxx:94
+sc/source/ui/inc/impex.hxx:95
ScImportExport::ScImportExport(ScDocument &,const rtl::OUString &)
sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:65
void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,struct TranslateId,const std::optional<signed char>)
@@ -2660,8 +2832,12 @@ sccomp/source/solver/DifferentialEvolution.hxx:66
int DifferentialEvolutionAlgorithm::getLastChange()
sccomp/source/solver/ParticelSwarmOptimization.hxx:84
int ParticleSwarmOptimizationAlgorithm::getLastChange()
+sd/inc/sdabstdlg.hxx:180
+ VclPtr<SfxAbstractTabDialog> SdAbstractDialogFactory::CreateSdOutlineBulletTabDlg(weld::Window *,const SfxItemSet *,sd::View *)
sd/inc/sddll.hxx:47
SdDLL::SdDLL()
+sd/source/filter/eppt/epptooxml.hxx:93
+ void oox::core::PowerPointExport::WriteDefaultColorSchemes(const std::shared_ptr<sax_fastparser::FastSerializerHelper> &)
sd/source/filter/ppt/pptinanimations.hxx:107
void ppt::AnimationImporter::dump(const char *,long)
sd/source/ui/inc/filedlg.hxx:54
@@ -2669,7 +2845,7 @@ sd/source/ui/inc/filedlg.hxx:54
sd/source/ui/inc/GraphicViewShell.hxx:43
SfxViewFactory * sd::GraphicViewShell::Factory()
sd/source/ui/inc/GraphicViewShell.hxx:43
- SfxViewShell * sd::GraphicViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *)
+ SfxViewShell * sd::GraphicViewShell::CreateInstance(SfxViewFrame &,SfxViewShell *)
sd/source/ui/inc/GraphicViewShell.hxx:43
void sd::GraphicViewShell::InitFactory()
sd/source/ui/inc/GraphicViewShell.hxx:43
@@ -2679,7 +2855,7 @@ sd/source/ui/inc/optsitem.hxx:178
sd/source/ui/inc/OutlineViewShell.hxx:40
SfxViewFactory * sd::OutlineViewShell::Factory()
sd/source/ui/inc/OutlineViewShell.hxx:40
- SfxViewShell * sd::OutlineViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *)
+ SfxViewShell * sd::OutlineViewShell::CreateInstance(SfxViewFrame &,SfxViewShell *)
sd/source/ui/inc/OutlineViewShell.hxx:40
void sd::OutlineViewShell::InitFactory()
sd/source/ui/inc/OutlineViewShell.hxx:40
@@ -2688,50 +2864,12 @@ sd/source/ui/inc/PaneShells.hxx:33
void sd::LeftImpressPaneShell::RegisterInterface(const SfxModule *)
sd/source/ui/inc/PaneShells.hxx:50
void sd::LeftDrawPaneShell::RegisterInterface(const SfxModule *)
+sd/source/ui/inc/SlideSorter.hxx:190
+ sd::slidesorter::SlideSorter::SlideSorter(sd::ViewShellBase &,vcl::Window &)
sd/source/ui/inc/unomodel.hxx:137
_Bool SdXImpressDocument::operator==(const SdXImpressDocument &) const
sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx:199
_Bool sd::slidesorter::view::InsertPosition::operator!=(const sd::slidesorter::view::InsertPosition &) const
-sdext/source/minimizer/unodialog.hxx:48
- UnoDialog::UnoDialog(const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> &,const com::sun::star::uno::Reference<com::sun::star::frame::XFrame> &)
-sdext/source/minimizer/unodialog.hxx:51
- void UnoDialog::execute()
-sdext/source/minimizer/unodialog.hxx:52
- void UnoDialog::endExecute(_Bool)
-sdext/source/minimizer/unodialog.hxx:57
- void UnoDialog::setVisible(const rtl::OUString &,_Bool)
-sdext/source/minimizer/unodialog.hxx:59
- com::sun::star::uno::Reference<com::sun::star::awt::XButton> UnoDialog::insertButton(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::awt::XActionListener> &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:63
- com::sun::star::uno::Reference<com::sun::star::awt::XFixedText> UnoDialog::insertFixedText(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:66
- com::sun::star::uno::Reference<com::sun::star::awt::XCheckBox> UnoDialog::insertCheckBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:69
- com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::insertFormattedField(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:72
- com::sun::star::uno::Reference<com::sun::star::awt::XComboBox> UnoDialog::insertComboBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:75
- com::sun::star::uno::Reference<com::sun::star::awt::XRadioButton> UnoDialog::insertRadioButton(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:78
- com::sun::star::uno::Reference<com::sun::star::awt::XListBox> UnoDialog::insertListBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:81
- com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::insertImage(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
-sdext/source/minimizer/unodialog.hxx:85
- com::sun::star::uno::Any UnoDialog::getControlProperty(const rtl::OUString &,const rtl::OUString &)
-sdext/source/minimizer/unodialog.hxx:87
- void UnoDialog::enableControl(const rtl::OUString &)
-sdext/source/minimizer/unodialog.hxx:88
- void UnoDialog::disableControl(const rtl::OUString &)
-sdext/source/minimizer/unodialog.hxx:90
- void UnoDialog::reschedule() const
-sdext/source/minimizer/unodialog.hxx:91
- _Bool UnoDialog::endStatus() const
-sdext/source/minimizer/unodialog.hxx:92
- com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::getControl(const rtl::OUString &) const
-sdext/source/minimizer/unodialog.hxx:93
- const com::sun::star::uno::Reference<com::sun::star::frame::XController> & UnoDialog::controller() const
-sdext/source/minimizer/unodialog.hxx:94
- void UnoDialog::setPropertyValues(const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/pdfimport/pdfparse/pdfparse.cxx:112
long (anonymous namespace)::PDFGrammar<boost::spirit::classic::file_iterator<>>::pdf_string_parser::operator()(const type-parameter-?-? &,struct boost::spirit::classic::nil_t &) const
sfx2/inc/autoredactdialog.hxx:74
@@ -2750,7 +2888,7 @@ sfx2/source/appl/shutdownicon.hxx:111
rtl::OUString ShutdownIcon::GetUrlDescription(std::basic_string_view<char16_t>)
sfx2/source/appl/shutdownicon.hxx:113
void ShutdownIcon::SetVeto(_Bool)
-sfx2/source/inc/templdgi.hxx:125
+sfx2/source/inc/templdgi.hxx:127
void SfxCommonTemplateDialog_Impl::LinkStubUpdateStyleDependents_Hdl(void *,void *)
shell/inc/xml_parser.hxx:43
xml_parser::xml_parser()
@@ -2792,12 +2930,20 @@ slideshow/source/engine/animationfactory.cxx:737
typename type-parameter-?-?::ValueType slideshow::internal::(anonymous namespace)::GenericAnimation::getUnderlyingValue() const
slideshow/source/engine/opengl/TransitionImpl.hxx:180
void OGLTransitionImpl::cleanup()
+slideshow/source/engine/slideoverlaybutton.hxx:59
+ void slideshow::internal::SlideOverlayButton::show()
+slideshow/source/engine/slideoverlaybutton.hxx:63
+ void slideshow::internal::SlideOverlayButton::hide()
+slideshow/source/engine/slideoverlaybutton.hxx:65
+ struct com::sun::star::geometry::IntegerSize2D slideshow::internal::SlideOverlayButton::getSize() const
slideshow/source/inc/box2dtools.hxx:159
void box2d::utils::box2DWorld::setShapeAngle(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape>,const double)
slideshow/source/inc/box2dtools.hxx:261
_Bool box2d::utils::box2DWorld::shapesInitialized()
slideshow/source/inc/box2dtools.hxx:299
std::shared_ptr<box2d::utils::box2DBody> box2d::utils::box2DWorld::makeShapeStatic(const std::shared_ptr<slideshow::internal::Shape> &)
+slideshow/source/inc/eventmultiplexer.hxx:653
+ basegfx::B2DPoint slideshow::internal::EventMultiplexer::toMatrixPoint(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>,basegfx::B2DPoint)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::AnimationEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
@@ -2834,37 +2980,37 @@ starmath/inc/mathml/element.hxx:132
int SmMlElement::GetSourceCodeRow() const
starmath/inc/mathml/element.hxx:139
int SmMlElement::GetSourceCodeColumn() const
-starmath/inc/mathml/export.hxx:54
+starmath/inc/mathml/export.hxx:55
void SmMLExportWrapper::setFlat(_Bool)
-starmath/inc/mathml/export.hxx:58
+starmath/inc/mathml/export.hxx:59
_Bool SmMLExportWrapper::getFlat() const
-starmath/inc/mathml/export.hxx:62
+starmath/inc/mathml/export.hxx:63
void SmMLExportWrapper::setUseHTMLMLEntities(_Bool)
-starmath/inc/mathml/export.hxx:69
+starmath/inc/mathml/export.hxx:70
_Bool SmMLExportWrapper::getUseHTMLMLEntities() const
-starmath/inc/mathml/export.hxx:73
+starmath/inc/mathml/export.hxx:74
_Bool SmMLExportWrapper::getUseExportTag() const
-starmath/inc/mathml/export.hxx:77
+starmath/inc/mathml/export.hxx:78
void SmMLExportWrapper::setUseExportTag(_Bool)
-starmath/inc/mathml/export.hxx:80
- SmMLExportWrapper::SmMLExportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>)
-starmath/inc/mathml/export.hxx:91
+starmath/inc/mathml/export.hxx:81
+ SmMLExportWrapper::SmMLExportWrapper(rtl::Reference<SmModel>)
+starmath/inc/mathml/export.hxx:92
_Bool SmMLExportWrapper::Export(SfxMedium &)
-starmath/inc/mathml/export.hxx:95
+starmath/inc/mathml/export.hxx:96
rtl::OUString SmMLExportWrapper::Export(SmMlElement *)
-starmath/inc/mathml/export.hxx:138
+starmath/inc/mathml/export.hxx:139
_Bool SmMLExport::getUseExportTag() const
-starmath/inc/mathml/import.hxx:38
+starmath/inc/mathml/import.hxx:39
SmMlElement * SmMLImportWrapper::getElementTree()
-starmath/inc/mathml/import.hxx:43
- SmMLImportWrapper::SmMLImportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>)
-starmath/inc/mathml/import.hxx:52
+starmath/inc/mathml/import.hxx:44
+ SmMLImportWrapper::SmMLImportWrapper(rtl::Reference<SmModel>)
+starmath/inc/mathml/import.hxx:53
ErrCode SmMLImportWrapper::Import(SfxMedium &)
-starmath/inc/mathml/import.hxx:56
+starmath/inc/mathml/import.hxx:57
ErrCode SmMLImportWrapper::Import(std::basic_string_view<char16_t>)
-starmath/inc/mathml/import.hxx:144
+starmath/inc/mathml/import.hxx:141
void SmMLImport::SetSmSyntaxVersion(unsigned short)
-starmath/inc/mathml/import.hxx:148
+starmath/inc/mathml/import.hxx:145
unsigned short SmMLImport::GetSmSyntaxVersion() const
starmath/inc/mathml/iterator.hxx:22
void mathml::SmMlIteratorBottomToTop(SmMlElement *,type-parameter-?-?,void *)
@@ -2872,7 +3018,7 @@ starmath/inc/mathml/iterator.hxx:121
SmMlElement * mathml::SmMlIteratorCopy(SmMlElement *)
starmath/inc/mathml/mathmlexport.hxx:62
_Bool SmXMLExportWrapper::IsUseHTMLMLEntities() const
-starmath/inc/mathml/mathmlimport.hxx:112
+starmath/inc/mathml/mathmlimport.hxx:109
unsigned short SmXMLImport::GetSmSyntaxVersion() const
starmath/inc/mathml/mathmlMo.hxx:83
enum moOpDF operator|(enum moOpDF,enum moOpDF)
@@ -2914,25 +3060,27 @@ svgio/inc/svgstyleattributes.hxx:372
enum svgio::svgreader::FontStretch svgio::svgreader::SvgStyleAttributes::getFontStretch() const
svgio/inc/svgtspannode.hxx:45
double svgio::svgreader::SvgTspanNode::getCurrentFontSize() const
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_append_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_assign_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_get_empty_value(rtl::OUString &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,rtl::OUString &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
-svl/source/misc/gridprinter.cxx:45
+svl/source/misc/gridprinter.cxx:42
void rtl::mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
+svx/inc/galleryfilestorage.hxx:57
+ const INetURLObject & GalleryFileStorage::GetStrURL() const
svx/inc/sdr/contact/viewcontactofgraphic.hxx:52
SdrGrafObj & sdr::contact::ViewContactOfGraphic::GetGrafObject()
-sw/inc/calbck.hxx:298
+sw/inc/calbck.hxx:305
sw::WriterListener * sw::ClientIteratorBase::GetLeftOfPos()
sw/inc/contentindex.hxx:68
int SwContentIndex::operator--(int)
@@ -2942,98 +3090,122 @@ sw/inc/contentindex.hxx:83
_Bool SwContentIndex::operator!=(const int) const
sw/inc/contentindex.hxx:113
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwContentIndex &)
-sw/inc/dbgoutsw.hxx:54
+sw/inc/dbgoutsw.hxx:53
const char * dbg_out(const void *)
-sw/inc/dbgoutsw.hxx:56
+sw/inc/dbgoutsw.hxx:55
const char * dbg_out(const SwRect &)
-sw/inc/dbgoutsw.hxx:57
+sw/inc/dbgoutsw.hxx:56
const char * dbg_out(const SwFrameFormat &)
-sw/inc/dbgoutsw.hxx:60
+sw/inc/dbgoutsw.hxx:59
const char * dbg_out(const SwContentNode *)
-sw/inc/dbgoutsw.hxx:61
+sw/inc/dbgoutsw.hxx:60
const char * dbg_out(const SwTextNode *)
-sw/inc/dbgoutsw.hxx:62
+sw/inc/dbgoutsw.hxx:61
const char * dbg_out(const SwTextAttr &)
-sw/inc/dbgoutsw.hxx:63
+sw/inc/dbgoutsw.hxx:62
const char * dbg_out(const SwpHints &)
-sw/inc/dbgoutsw.hxx:64
+sw/inc/dbgoutsw.hxx:63
const char * dbg_out(const SfxPoolItem &)
-sw/inc/dbgoutsw.hxx:65
+sw/inc/dbgoutsw.hxx:64
const char * dbg_out(const SfxPoolItem *)
-sw/inc/dbgoutsw.hxx:66
+sw/inc/dbgoutsw.hxx:65
const char * dbg_out(const SfxItemSet &)
-sw/inc/dbgoutsw.hxx:67
+sw/inc/dbgoutsw.hxx:66
const char * dbg_out(const struct SwPosition &)
-sw/inc/dbgoutsw.hxx:68
+sw/inc/dbgoutsw.hxx:67
const char * dbg_out(const SwPaM &)
-sw/inc/dbgoutsw.hxx:69
+sw/inc/dbgoutsw.hxx:68
const char * dbg_out(const SwNodeNum &)
-sw/inc/dbgoutsw.hxx:70
+sw/inc/dbgoutsw.hxx:69
const char * dbg_out(const SwUndo &)
-sw/inc/dbgoutsw.hxx:71
+sw/inc/dbgoutsw.hxx:70
const char * dbg_out(const SwOutlineNodes &)
-sw/inc/dbgoutsw.hxx:72
+sw/inc/dbgoutsw.hxx:71
const char * dbg_out(const SwNumRule &)
-sw/inc/dbgoutsw.hxx:73
+sw/inc/dbgoutsw.hxx:72
const char * dbg_out(const SwTextFormatColl &)
-sw/inc/dbgoutsw.hxx:75
+sw/inc/dbgoutsw.hxx:73
const char * dbg_out(const SwNumRuleTable &)
-sw/inc/dbgoutsw.hxx:76
+sw/inc/dbgoutsw.hxx:74
const char * dbg_out(const SwNodeRange &)
-sw/inc/dbgoutsw.hxx:79
+sw/inc/dbgoutsw.hxx:75
+ const char * dbg_out(const sw::FrameFormats<sw::SpzFrameFormat *> &)
+sw/inc/dbgoutsw.hxx:78
rtl::OUString lcl_dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
-sw/inc/dbgoutsw.hxx:103
+sw/inc/dbgoutsw.hxx:102
const char * dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
-sw/inc/dbgoutsw.hxx:107
+sw/inc/dbgoutsw.hxx:106
const char * dbg_out(const struct SwFormToken &)
-sw/inc/dbgoutsw.hxx:108
+sw/inc/dbgoutsw.hxx:107
const char * dbg_out(const std::vector<struct SwFormToken> &)
-sw/inc/docary.hxx:97
- void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFrameFormat **, std::__cxx1998::vector<SwFrameFormat *> >, std::vector<SwFrameFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
-sw/inc/docary.hxx:97
- void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwGrfFormatColl **, std::__cxx1998::vector<SwGrfFormatColl *> >, std::vector<SwGrfFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
-sw/inc/docary.hxx:97
- void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNumRule **, std::__cxx1998::vector<SwNumRule *> >, std::vector<SwNumRule *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
-sw/inc/docary.hxx:97
- void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat **, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
-sw/inc/docary.hxx:97
- void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFormatColl **, std::__cxx1998::vector<SwTextFormatColl *> >, std::vector<SwTextFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
-sw/inc/docary.hxx:143
+sw/inc/docary.hxx:98
+ void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFrameFormat **, std::__cxx1998::vector<SwFrameFormat *> >, std::vector<SwFrameFormat *> >,type-parameter-?-?,type-parameter-?-?)
+sw/inc/docary.hxx:98
+ void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwGrfFormatColl **, std::__cxx1998::vector<SwGrfFormatColl *> >, std::vector<SwGrfFormatColl *> >,type-parameter-?-?,type-parameter-?-?)
+sw/inc/docary.hxx:98
+ void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNumRule **, std::__cxx1998::vector<SwNumRule *> >, std::vector<SwNumRule *> >,type-parameter-?-?,type-parameter-?-?)
+sw/inc/docary.hxx:98
+ void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat **, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *> >,type-parameter-?-?,type-parameter-?-?)
+sw/inc/docary.hxx:98
+ void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFormatColl **, std::__cxx1998::vector<SwTextFormatColl *> >, std::vector<SwTextFormatColl *> >,type-parameter-?-?,type-parameter-?-?)
+sw/inc/docary.hxx:144
void SwVectorModifyBase::dumpAsXml(struct _xmlTextWriter *)
-sw/inc/docufld.hxx:502
+sw/inc/docufld.hxx:510
void SwPostItField::ToggleResolved()
-sw/inc/editsh.hxx:371
+sw/inc/editsh.hxx:372
void SwEditShell::ValidateCurrentParagraphSignatures(_Bool)
sw/inc/extinput.hxx:47
SwExtTextInput * SwExtTextInput::GetPrev()
sw/inc/extinput.hxx:48
const SwExtTextInput * SwExtTextInput::GetPrev() const
+sw/inc/format.hxx:215
+ const SvxLeftMarginItem & SwFormat::GetLeftMargin(_Bool) const
+sw/inc/format.hxx:219
+ const SvxGutterLeftMarginItem & SwFormat::GetGutterLeftMargin(_Bool) const
+sw/inc/format.hxx:220
+ const SvxGutterRightMarginItem & SwFormat::GetGutterRightMargin(_Bool) const
sw/inc/formatcontentcontrol.hxx:82
SwFormatContentControl * SwFormatContentControl::CreatePoolDefault(unsigned short)
-sw/inc/IDocumentLinksAdministration.hxx:54
+sw/inc/frameformats.hxx:84
+ typename multi_index_container<type-parameter-?-?, indexed_by<random_access<tag<struct ByPos, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na> >, ordered_unique<tag<struct ByTypeAndName, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na>, struct FrameFormatsKey, struct na>, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na>, allocator<type-parameter-?-?> >::template index<struct ByTypeAndName>::type & sw::FrameFormats::GetByTypeAndName()
+sw/inc/frameformats.hxx:122
+ void sw::FrameFormats::erase(typename multi_index_container<type-parameter-?-?, indexed_by<random_access<tag<struct ByPos, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na> >, ordered_unique<tag<struct ByTypeAndName, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na>, struct FrameFormatsKey, struct na>, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na, struct na>, allocator<type-parameter-?-?> >::size_type)
+sw/inc/frameformats.hxx:155
+ const type-parameter-?-? & sw::FrameFormats::back() const
+sw/inc/frmfmt.hxx:94
+ SwFrameFormat::change_name::change_name(const rtl::OUString &)
+sw/inc/frmfmt.hxx:95
+ void SwFrameFormat::change_name::operator()(SwFormat *)
+sw/inc/IDocumentLinksAdministration.hxx:53
_Bool IDocumentLinksAdministration::GetData(const rtl::OUString &,const rtl::OUString &,com::sun::star::uno::Any &) const
-sw/inc/IDocumentLinksAdministration.hxx:56
+sw/inc/IDocumentLinksAdministration.hxx:55
void IDocumentLinksAdministration::SetData(const rtl::OUString &)
-sw/inc/IDocumentMarkAccess.hxx:95
+sw/inc/IDocumentMarkAccess.hxx:94
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator--()
-sw/inc/IDocumentMarkAccess.hxx:96
+sw/inc/IDocumentMarkAccess.hxx:95
IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator--(int)
-sw/inc/IDocumentMarkAccess.hxx:97
+sw/inc/IDocumentMarkAccess.hxx:96
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator+=(long)
-sw/inc/IDocumentMarkAccess.hxx:99
+sw/inc/IDocumentMarkAccess.hxx:98
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator-=(long)
-sw/inc/IDocumentMarkAccess.hxx:103
+sw/inc/IDocumentMarkAccess.hxx:102
_Bool IDocumentMarkAccess::iterator::operator<(const IDocumentMarkAccess::iterator &) const
-sw/inc/IDocumentMarkAccess.hxx:104
+sw/inc/IDocumentMarkAccess.hxx:103
_Bool IDocumentMarkAccess::iterator::operator>(const IDocumentMarkAccess::iterator &) const
-sw/inc/IDocumentMarkAccess.hxx:106
+sw/inc/IDocumentMarkAccess.hxx:105
_Bool IDocumentMarkAccess::iterator::operator>=(const IDocumentMarkAccess::iterator &) const
sw/inc/modcfg.hxx:344
_Bool SwModuleOptions::IsFileEncryptedFromColumn() const
-sw/inc/ndindex.hxx:127
+sw/inc/ndarr.hxx:226
+ SwGrfNode * SwNodes::MakeGrfNode(SwNode &,const GraphicObject &,SwGrfFormatColl *)
+sw/inc/ndindex.hxx:63
+ SwNodeIndex::SwNodeIndex(SwNodes &,int)
+sw/inc/ndindex.hxx:114
SwNodeIndex & SwNodeIndex::Assign(const SwNodes &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>)
-sw/inc/ndindex.hxx:139
+sw/inc/ndindex.hxx:126
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwNodeIndex &)
+sw/inc/ndtxt.hxx:543
+ void SwTextNode::ClearLRSpaceItemDueToListLevelIndents(std::unique_ptr<SvxFirstLineIndentItem> &,std::unique_ptr<SvxTextLeftMarginItem> &) const
sw/inc/node.hxx:261
const IDocumentStylePoolAccess & SwNode::getIDocumentStylePoolAccess() const
sw/inc/node.hxx:265
@@ -3044,13 +3216,13 @@ sw/inc/pagedesc.hxx:453
SwPageDesc *const & SwPageDescs::front() const
sw/inc/pagedesc.hxx:454
SwPageDesc *const & SwPageDescs::back() const
-sw/inc/pam.hxx:49
- SwPosition::SwPosition(const SwNodeIndex &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
sw/inc/pam.hxx:50
- SwPosition::SwPosition(const SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
+ SwPosition::SwPosition(const SwNodeIndex &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
sw/inc/pam.hxx:51
+ SwPosition::SwPosition(const SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
+sw/inc/pam.hxx:52
SwPosition::SwPosition(const SwContentIndex &,short)
-sw/inc/pam.hxx:334
+sw/inc/pam.hxx:328
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwPaM &)
sw/inc/rdfhelper.hxx:76
void SwRDFHelper::cloneStatements(const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &)
@@ -3060,19 +3232,19 @@ sw/inc/rdfhelper.hxx:97
void SwRDFHelper::updateTextNodeStatement(const rtl::OUString &,const rtl::OUString &,SwTextNode &,const rtl::OUString &,const rtl::OUString &,const rtl::OUString &)
sw/inc/ring.hxx:203
sw::RingIterator::RingIterator<value_type>()
-sw/inc/shellio.hxx:85
+sw/inc/shellio.hxx:89
void SwAsciiOptions::SetIncludeHidden(_Bool)
-sw/inc/swabstdlg.hxx:394
+sw/inc/swabstdlg.hxx:409
std::optional<SwLanguageListItem> AbstractSwTranslateLangSelectDlg::GetSelectedLanguage()
-sw/inc/swatrset.hxx:219
+sw/inc/swatrset.hxx:226
const SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const
-sw/inc/swcrsr.hxx:307
+sw/inc/swcrsr.hxx:309
SwTableCursor * SwTableCursor::GetNext()
-sw/inc/swcrsr.hxx:308
+sw/inc/swcrsr.hxx:310
const SwTableCursor * SwTableCursor::GetNext() const
-sw/inc/swcrsr.hxx:309
+sw/inc/swcrsr.hxx:311
SwTableCursor * SwTableCursor::GetPrev()
-sw/inc/swcrsr.hxx:310
+sw/inc/swcrsr.hxx:312
const SwTableCursor * SwTableCursor::GetPrev() const
sw/inc/swrect.hxx:102
SwRect & SwRect::operator-=(const Point &)
@@ -3080,10 +3252,12 @@ sw/inc/swrect.hxx:108
SvStream & WriteSwRect(SvStream &,const SwRect &)
sw/inc/swrect.hxx:152
_Bool SwRect::OverStepTop(long) const
-sw/inc/textboxhelper.hxx:252
+sw/inc/textboxhelper.hxx:256
_Bool SwTextBoxNode::IsGroupTextBox() const
-sw/inc/view.hxx:466
+sw/inc/view.hxx:473
void SwView::LinkStubMoveNavigationHdl(void *,void *)
+sw/inc/viewopt.hxx:313
+ const struct SwViewColors & SwViewOption::GetColorConfig() const
sw/inc/viscrs.hxx:227
SwShellTableCursor * SwShellTableCursor::GetNext()
sw/inc/viscrs.hxx:228
@@ -3102,33 +3276,37 @@ sw/source/core/inc/AccessibilityIssue.hxx:52
const std::vector<rtl::OUString> & sw::AccessibilityIssue::getAdditionalInfo() const
sw/source/core/inc/AccessibilityIssue.hxx:54
void sw::AccessibilityIssue::setAdditionalInfo(std::vector<rtl::OUString> &&)
-sw/source/core/inc/frame.hxx:936
+sw/source/core/inc/dflyobj.hxx:49
+ SwFlyDrawObj::SwFlyDrawObj(SdrModel &,const SwFlyDrawObj &)
+sw/source/core/inc/frame.hxx:942
void SwFrame::dumpTopMostAsXml(struct _xmlTextWriter *) const
-sw/source/core/inc/frame.hxx:1383
+sw/source/core/inc/frame.hxx:1389
Size SwRectFnSet::GetSize(const SwRect &) const
-sw/source/core/inc/frame.hxx:1414
+sw/source/core/inc/frame.hxx:1420
long SwRectFnSet::LeftDist(const SwRect &,long) const
-sw/source/core/inc/frame.hxx:1415
+sw/source/core/inc/frame.hxx:1421
long SwRectFnSet::RightDist(const SwRect &,long) const
sw/source/core/inc/mvsave.hxx:172
_Bool ZSortFly::operator==(const ZSortFly &) const
-sw/source/core/inc/swfont.hxx:415
- void SwFont::dumpAsXml(struct _xmlTextWriter *) const
sw/source/core/text/porlin.hxx:125
_Bool SwLinePortion::IsTabRightPortion() const
sw/source/core/text/txtpaint.hxx:72
DbgBackColor::DbgBackColor(OutputDevice *,const _Bool)
sw/source/core/text/txtpaint.hxx:79
DbgRect::DbgRect(OutputDevice *,const tools::Rectangle &,const _Bool,Color)
+sw/source/filter/ww8/writerhelper.hxx:320
+ void sw::util::DeduplicateItems(std::map<unsigned short, const SfxPoolItem *, sw::util::ItemSort> &)
+sw/source/filter/ww8/ww8par.hxx:1920
+ _Bool SwWW8ImplReader::SearchTableEnd(WW8PLCFx_Cp_FKP *) const
+sw/source/uibase/inc/conttree.hxx:192
+ std::unique_ptr<weld::TreeIter> SwContentTree::GetEntryAtAbsPos(unsigned long) const
sw/source/uibase/inc/swcont.hxx:89
_Bool SwContent::operator==(const SwContent &) const
sw/source/uibase/inc/unomod.hxx:36
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> SwXModule_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
-test/source/sheet/xsubtotalfield.cxx:28
- _Bool CppUnit::assertion_traits::equal(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &,const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
-test/source/sheet/xsubtotalfield.cxx:34
- std::basic_string<char> CppUnit::assertion_traits::toString(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
-toolkit/inc/awt/vclxbitmap.hxx:49
+sw/source/uibase/sidebar/ThemePanel.hxx:47
+ _Bool sw::sidebar::ThemePanel::LinkStubDoubleClickHdl(void *,weld::TreeView &)
+toolkit/inc/awt/vclxbitmap.hxx:47
VCLXBitmap::VCLXBitmap(const BitmapEx &)
ucb/source/inc/regexpmap.hxx:285
RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::begin() const
@@ -3170,7 +3348,7 @@ vcl/inc/impfont.hxx:93
unsigned long ImplFont::GetHashValue() const
vcl/inc/ImplLayoutArgs.hxx:71
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const vcl::text::ImplLayoutArgs &)
-vcl/inc/jsdialog/jsdialogbuilder.hxx:206
+vcl/inc/jsdialog/jsdialogbuilder.hxx:212
void JSDropTarget::fire_dragEnter(const struct com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent &)
vcl/inc/opengl/zone.hxx:26
void OpenGLZone::relaxWatchdogTimings()
@@ -3180,23 +3358,21 @@ vcl/inc/qt5/QtDragAndDrop.hxx:80
void QtDropTarget::deinitialize()
vcl/inc/qt5/QtFontFace.hxx:41
QtFontFace * QtFontFace::fromQFont(const QFont &)
-vcl/inc/qt5/QtFrame.hxx:149
- QPoint QtFrame::mapFromParent(const QPoint &) const
-vcl/inc/qt5/QtFrame.hxx:164
+vcl/inc/qt5/QtFrame.hxx:163
void QtFrame::deregisterDragSource(const QtDragSource *)
-vcl/inc/qt5/QtFrame.hxx:166
+vcl/inc/qt5/QtFrame.hxx:165
void QtFrame::deregisterDropTarget(const QtDropTarget *)
-vcl/inc/qt5/QtGraphics.hxx:180
+vcl/inc/qt5/QtGraphics.hxx:181
void QtGraphics::drawScaledImage(const struct SalTwoRect &,const QImage &)
-vcl/inc/qt5/QtGraphics_Controls.hxx:96
+vcl/inc/qt5/QtGraphics_Controls.hxx:97
QPoint QtGraphics_Controls::upscale(const QPoint &,enum QtGraphics_Controls::Round)
vcl/inc/qt5/QtMenu.hxx:67
void QtMenu::adjustButtonSizes()
-vcl/inc/qt5/QtMenu.hxx:80
+vcl/inc/qt5/QtMenu.hxx:78
const QtFrame * QtMenu::GetFrame() const
vcl/inc/qt5/QtObject.hxx:48
QWidget * QtObject::widget() const
-vcl/inc/qt5/QtPainter.hxx:53
+vcl/inc/qt5/QtPainter.hxx:61
void QtPainter::update()
vcl/inc/qt5/QtX11Support.hxx:23
void QtX11Support::fetchAtoms()
@@ -3224,48 +3400,52 @@ vcl/inc/salwtype.hxx:136
SalMenuEvent::SalMenuEvent()
vcl/inc/schedulerimpl.hxx:49
const char * ImplSchedulerData::GetDebugName() const
-vcl/inc/skia/gdiimpl.hxx:49
+vcl/inc/skia/gdiimpl.hxx:50
const vcl::Region & SkiaSalGraphicsImpl::getClipRegion() const
-vcl/inc/skia/gdiimpl.hxx:204
+vcl/inc/skia/gdiimpl.hxx:205
void SkiaSalGraphicsImpl::dump(const char *) const
-vcl/inc/skia/salbmp.hxx:99
+vcl/inc/skia/gdiimpl.hxx:343
+ void SkiaSalGraphicsImpl::windowBackingPropertiesChanged()
+vcl/inc/skia/salbmp.hxx:106
void SkiaSalBitmap::dump(const char *) const
-vcl/inc/skia/utils.hxx:58
+vcl/inc/skia/utils.hxx:66
sk_sp<SkSurface> SkiaHelper::createSkSurface(int,int,enum SkAlphaType)
-vcl/inc/skia/utils.hxx:121
+vcl/inc/skia/utils.hxx:129
void SkiaHelper::removeCachedImage(sk_sp<SkImage>)
-vcl/inc/skia/utils.hxx:131
+vcl/inc/skia/utils.hxx:139
void SkiaHelper::setPixelGeometry(enum SkPixelGeometry)
-vcl/inc/skia/utils.hxx:249
+vcl/inc/skia/utils.hxx:257
void SkiaHelper::dump(const SkBitmap &,const char *)
vcl/inc/skia/zone.hxx:25
void SkiaZone::relaxWatchdogTimings()
-vcl/inc/unx/fontmanager.hxx:206
- enum FontItalic psp::PrintFontManager::getFontItalic(int) const
-vcl/inc/unx/fontmanager.hxx:213
- enum FontWeight psp::PrintFontManager::getFontWeight(int) const
-vcl/inc/unx/freetype_glyphcache.hxx:61
- const unsigned char * FreetypeFontInfo::GetTable(const char *,unsigned long *) const
-vcl/inc/unx/gtk/gtkframe.hxx:298
+vcl/inc/unx/gtk/gtkframe.hxx:301
void GtkSalFrame::DrawingAreaFocusInOut(enum SalEvent)
vcl/inc/unx/gtk/gtksalmenu.hxx:81
const GtkSalFrame * GtkSalMenu::GetFrame() const
vcl/inc/unx/printergfx.hxx:93
_Bool psp::PrinterColor::operator!=(const psp::PrinterColor &) const
-vcl/inc/unx/saldisp.hxx:376
- SalXLib * SalDisplay::GetXLib() const
-vcl/inc/unx/salframe.h:186
+vcl/inc/unx/saldisp.hxx:96
+ Color SalVisual::GetTCColor(unsigned long) const
+vcl/inc/unx/saldisp.hxx:357
+ _Bool SalDisplay::XIfEventWithTimeout(union _XEvent *,char *,int (*)(struct _XDisplay *, union _XEvent *, char *)) const
+vcl/inc/unx/salframe.h:188
enum SalFrameStyleFlags X11SalFrame::GetStyle() const
+vcl/inc/unx/salgdi.h:78
+ unsigned long X11Common::GetPixel(Color) const
+vcl/inc/unx/saltype.h:21
+ _Bool SalX11Screen::operator==(const SalX11Screen &) const
vcl/qa/cppunit/lifecycle.cxx:197
(anonymous namespace)::LeakTestClass::LeakTestClass(_Bool &,type-parameter-?-? &&...)
vcl/source/app/scheduler.cxx:83
basic_ostream<type-parameter-?-?, type-parameter-?-?> & (anonymous namespace)::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const Idle &)
vcl/source/edit/textdat2.hxx:85
- __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::begin() const
+ __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion> > TETextPortionList::begin() const
vcl/source/edit/textdat2.hxx:87
- __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::end() const
+ __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion> > TETextPortionList::end() const
vcl/source/filter/FilterConfigCache.hxx:70
rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short)
+vcl/source/filter/graphicfilter_internal.hxx:25
+ unsigned char * ImplSearchEntry(unsigned char *,const unsigned char *,unsigned long,unsigned long)
vcl/source/fontsubset/xlat.hxx:30
unsigned short vcl::TranslateChar12(unsigned short)
vcl/source/fontsubset/xlat.hxx:31
@@ -3277,11 +3457,11 @@ vcl/source/fontsubset/xlat.hxx:33
vcl/source/fontsubset/xlat.hxx:34
unsigned short vcl::TranslateChar16(unsigned short)
vcl/source/opengl/GLMHelper.hxx:17
- std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::mat<4, 4, float, glm::packed_highp> &)
+ std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::mat<4, 4, float> &)
vcl/source/opengl/GLMHelper.hxx:18
- std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<4, float, glm::packed_highp> &)
+ std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<4, float> &)
vcl/source/opengl/GLMHelper.hxx:19
- std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<3, float, glm::packed_highp> &)
+ std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<3, float> &)
vcl/source/window/menuitemlist.hxx:123
void MenuItemList::Clear()
vcl/unx/generic/dtrans/X11_clipboard.hxx:106
@@ -3290,6 +3470,8 @@ vcl/unx/generic/dtrans/X11_selection.hxx:487
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
vcl/unx/generic/dtrans/X11_selection.hxx:491
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_dropTarget_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
+vcl/unx/generic/gdi/X11CairoSalGraphicsImpl.hxx:76
+ void X11CairoSalGraphicsImpl::clipRegion(struct _cairo *)
vcl/unx/gtk3/customcellrenderer.hxx:29
int CUSTOM_IS_CELL_RENDERER(void *)
vcl/unx/gtk3/customcellrenderer.hxx:29
@@ -3314,12 +3496,38 @@ vcl/unx/gtk3/gloactiongroup.cxx:51
void * g_lo_action_get_instance_private(struct (anonymous namespace)::GLOAction *)
vcl/unx/gtk3/glomenu.cxx:32
void * g_lo_menu_get_instance_private(struct GLOMenu *)
-writerfilter/source/dmapper/PropertyMap.hxx:380
+writerfilter/source/dmapper/DomainMapper_Impl.hxx:417
+ writerfilter::dmapper::FloatingTableInfo::FloatingTableInfo(com::sun::star::uno::Reference<com::sun::star::text::XTextRange>,com::sun::star::uno::Reference<com::sun::star::text::XTextRange>,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,int,int,_Bool)
+writerfilter/source/dmapper/DomainMapper_Impl.hxx:429
+ com::sun::star::uno::Any writerfilter::dmapper::FloatingTableInfo::getPropertyValue(std::basic_string_view<char16_t>)
+writerfilter/source/dmapper/DomainMapperTableManager.hxx:100
+ writerfilter::dmapper::TablePositionHandler * writerfilter::dmapper::DomainMapperTableManager::getCurrentTableRealPosition()
+writerfilter/source/dmapper/PropertyMap.hxx:378
int writerfilter::dmapper::SectionPropertyMap::GetBreakType() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:39
+ int writerfilter::dmapper::TablePositionHandler::getY() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:40
+ int writerfilter::dmapper::TablePositionHandler::getX() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:41
+ int writerfilter::dmapper::TablePositionHandler::getLeftFromText() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:42
+ int writerfilter::dmapper::TablePositionHandler::getRightFromText() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:43
+ int writerfilter::dmapper::TablePositionHandler::getTopFromText() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:44
+ int writerfilter::dmapper::TablePositionHandler::getBottomFromText() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:46
+ const rtl::OUString & writerfilter::dmapper::TablePositionHandler::getVertAnchor() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:47
+ const rtl::OUString & writerfilter::dmapper::TablePositionHandler::getYSpec() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:48
+ const rtl::OUString & writerfilter::dmapper::TablePositionHandler::getHorzAnchor() const
+writerfilter/source/dmapper/TablePositionHandler.hxx:49
+ const rtl::OUString & writerfilter::dmapper::TablePositionHandler::getXSpec() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:183
- __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::begin() const
+ __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > > writerfilter::ooxml::OOXMLPropertySet::begin() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:184
- __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::end() const
+ __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > > writerfilter::ooxml::OOXMLPropertySet::end() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:187
std::basic_string<char> writerfilter::ooxml::OOXMLPropertySet::toString()
xmlsecurity/inc/framework/xmlsignaturetemplateimpl.hxx:92
diff --git a/compilerplugins/clang/unusedmethods.unused-returns.results b/compilerplugins/clang/unusedmethods.unused-returns.results
index 0252f7c17f4a..0b2092e840d4 100644
--- a/compilerplugins/clang/unusedmethods.unused-returns.results
+++ b/compilerplugins/clang/unusedmethods.unused-returns.results
@@ -4,6 +4,10 @@ connectivity/source/inc/odbc/OConnection.hxx:74
short connectivity::odbc::OConnection::Construct(const rtl::OUString &,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &)
connectivity/source/inc/odbc/OStatement.hxx:113
_Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const rtl::OUString &)
+cppuhelper/inc/interfacecontainer4.hxx:170
+ int cppuhelper::OInterfaceContainerHelper4::addInterface(std::unique_lock<std::mutex> &,const Reference<type-parameter-?-?> &)
+cppuhelper/inc/interfacecontainer4.hxx:181
+ int cppuhelper::OInterfaceContainerHelper4::removeInterface(std::unique_lock<std::mutex> &,const Reference<type-parameter-?-?> &)
cui/source/inc/iconcdlg.hxx:56
_Bool IconChoicePage::FillItemSet(SfxItemSet *)
dbaccess/source/ui/app/AppSwapWindow.hxx:84
@@ -20,11 +24,11 @@ extensions/source/scanner/sanedlg.hxx:87
_Bool SaneDlg::LoadState()
extensions/source/scanner/sanedlg.hxx:101
_Bool SaneDlg::SetAdjustedNumericalValue(const char *,double,int)
-framework/source/fwe/classes/addonsoptions.cxx:282
+framework/source/fwe/classes/addonsoptions.cxx:281
_Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
-framework/source/fwe/classes/addonsoptions.cxx:284
+framework/source/fwe/classes/addonsoptions.cxx:283
_Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
-i18nlangtag/source/languagetag/languagetag.cxx:298
+i18nlangtag/source/languagetag/languagetag.cxx:302
const rtl::OUString & LanguageTagImpl::getBcp47() const
include/basegfx/range/b2dconnectedranges.hxx:215
type-parameter-?-? basegfx::B2DConnectedRanges::forEachAggregate(type-parameter-?-?) const
@@ -36,9 +40,9 @@ include/basic/sbstar.hxx:62
_Bool StarBASIC::RTError(ErrCode,const rtl::OUString &,int,int,int)
include/comphelper/backupfilehelper.hxx:205
_Bool comphelper::BackupFileHelper::tryPush_extensionInfo(std::basic_string_view<char16_t>)
-include/editeng/editview.hxx:263
+include/editeng/editview.hxx:267
ErrCode EditView::Read(SvStream &,enum EETextFormat,SvKeyValueIterator *)
-include/editeng/outliner.hxx:279
+include/editeng/outliner.hxx:280
_Bool OutlinerView::Command(const CommandEvent &)
include/oox/crypto/AgileEngine.hxx:120
_Bool oox::crypto::AgileEngine::decryptHmacKey()
@@ -102,6 +106,12 @@ include/oox/export/shapes.hxx:137
oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,const char *)
include/oox/export/shapes.hxx:185
oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &,int,_Bool)
+include/oox/export/ThemeExport.hxx:48
+ _Bool oox::ThemeExport::writeColorSet(const model::Theme &)
+include/oox/export/ThemeExport.hxx:49
+ _Bool oox::ThemeExport::writeFontScheme(const model::FontScheme &)
+include/oox/export/ThemeExport.hxx:50
+ _Bool oox::ThemeExport::writeFormatScheme(const model::FormatScheme &)
include/oox/helper/binaryoutputstream.hxx:78
oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short)
include/oox/helper/binaryoutputstream.hxx:79
@@ -114,13 +124,13 @@ include/oox/ole/olehelper.hxx:176
_Bool oox::ole::MSConvertOCXControls::importControlFromStream(oox::BinaryInputStream &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,std::basic_string_view<char16_t>)
include/oox/ole/olehelper.hxx:187
_Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const tools::SvRef<SotStorageStream> &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,int,int)
-include/sax/fshelper.hxx:139
+include/sax/fshelper.hxx:135
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
-include/sax/fshelper.hxx:140
+include/sax/fshelper.hxx:136
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long)
-include/sax/fshelper.hxx:141
+include/sax/fshelper.hxx:137
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double)
-include/sax/fshelper.hxx:143
+include/sax/fshelper.hxx:139
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *)
include/sfx2/linkmgr.hxx:65
_Bool sfx2::LinkManager::InsertLink(sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const rtl::OUString *)
@@ -128,7 +138,7 @@ include/sfx2/lnkbase.hxx:111
sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject()
include/svl/macitem.hxx:89
SvStream & SvxMacroTableDtor::Write(SvStream &) const
-include/svtools/ctrlbox.hxx:367
+include/svtools/ctrlbox.hxx:368
_Bool FontNameBox::get_entry_selection_bounds(int &,int &)
include/svx/autoformathelper.hxx:212
_Bool AutoFormatBase::LoadBlockA(SvStream &,const struct AutoFormatVersions &,unsigned short)
@@ -142,12 +152,16 @@ include/svx/dlgctrl.hxx:99
Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint)
include/svx/framelink.hxx:159
svx::frame::Style & svx::frame::Style::MirrorSelf()
-include/svx/gallerybinaryengine.hxx:105
- SvStream & GalleryBinaryEngine::writeGalleryTheme(SvStream &,const GalleryTheme &,const GalleryThemeEntry *)
-include/svx/gallerybinaryengineentry.hxx:57
- std::unique_ptr<GalleryTheme> & GalleryBinaryEngineEntry::getCachedTheme(std::unique_ptr<GalleryTheme> &)
-include/test/a11y/AccessibilityTools.hxx:62
- rtl::OUString AccessibilityTools::getStateName(const short)
+include/test/a11y/AccessibilityTools.hxx:118
+ com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> AccessibilityTools::getAccessibleObjectForName(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> &,const short,std::basic_string_view<char16_t>,type-parameter-?-?...)
+include/test/a11y/AccessibilityTools.hxx:148
+ com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> AccessibilityTools::getAccessibleObjectForName(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> &,const short,std::basic_string_view<char16_t>,type-parameter-?-?...)
+include/test/a11y/AccessibilityTools.hxx:172
+ _Bool AccessibilityTools::nameEquals(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> &,const std::basic_string_view<char16_t>)
+include/test/a11y/AccessibilityTools.hxx:260
+ rtl::OUString AccessibilityTools::debugName(com::sun::star::accessibility::XAccessibleAction *)
+include/test/a11y/eventposter.hxx:91
+ _Bool test::EventPosterHelper::operator!() const
include/test/helper/shape.hxx:41
com::sun::star::uno::Reference<com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const com::sun::star::uno::Reference<com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
include/test/sheet/xnamedrange.hxx:22
@@ -160,15 +174,19 @@ include/tools/urlobj.hxx:738
_Bool INetURLObject::SetParam(std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
include/unotools/localedatawrapper.hxx:159
const com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const
+include/vcl/BinaryDataContainer.hxx:61
+ unsigned long BinaryDataContainer::writeToStream(SvStream &) const
+include/vcl/bitmap.hxx:263
+ _Bool Bitmap::Blend(const AlphaMask &,const Color &)
include/vcl/bitmapex.hxx:226
_Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const Color &)
include/vcl/filter/SvmReader.hxx:36
SvStream & SvmReader::Read(GDIMetaFile &,struct ImplMetaReadData *)
include/vcl/filter/SvmWriter.hxx:37
SvStream & SvmWriter::Write(const GDIMetaFile &)
-include/vcl/formatter.hxx:218
+include/vcl/formatter.hxx:219
_Bool Formatter::SetFormat(const rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>)
-include/vcl/graphicfilter.hxx:257
+include/vcl/graphicfilter.hxx:258
ErrCode GraphicFilter::ExportGraphic(const Graphic &,const INetURLObject &,unsigned short,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
include/vcl/GraphicNativeMetadata.hxx:34
_Bool GraphicNativeMetadata::read(SvStream &)
@@ -176,19 +194,17 @@ include/vcl/GraphicNativeTransform.hxx:33
_Bool GraphicNativeTransform::rotateBitmapOnly(struct o3tl::strong_int<short, struct FractionTag<10> >)
include/vcl/GraphicNativeTransform.hxx:35
_Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,std::basic_string_view<char16_t>)
-include/vcl/menu.hxx:387
+include/vcl/menu.hxx:385
_Bool Menu::HandleMenuActivateEvent(Menu *) const
-include/vcl/menu.hxx:388
+include/vcl/menu.hxx:386
_Bool Menu::HandleMenuDeActivateEvent(Menu *) const
include/vcl/texteng.hxx:271
_Bool TextEngine::Read(SvStream &,const TextSelection *)
-include/vcl/window.hxx:1394
- _Bool vcl::Window::set_font_attribute(const rtl::OString &,std::basic_string_view<char16_t>)
include/xmloff/unointerfacetouniqueidentifiermapper.hxx:65
_Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
include/xmloff/xmluconv.hxx:279
_Bool SvXMLUnitConverter::convertNumFormat(short &,const rtl::OUString &,std::basic_string_view<char16_t>,_Bool) const
-linguistic/source/lngsvcmgr.hxx:117
+linguistic/source/lngsvcmgr.hxx:116
_Bool LngSvcMgr::SaveCfgSvcs(std::basic_string_view<char16_t>)
lotuswordpro/inc/lwpsvstream.hxx:80
LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &)
@@ -200,13 +216,13 @@ sc/inc/column.hxx:677
_Bool ScColumn::DeleteSparkline(int)
sc/inc/orcusfilters.hxx:44
_Bool ScOrcusFilters::importODS_Styles(ScDocument &,rtl::OUString &) const
-sc/inc/scabstdlg.hxx:55
+sc/inc/scabstdlg.hxx:56
_Bool ScAsyncTabController::StartExecuteAsync(struct VclAbstractDialog::AsyncContext &)
sc/source/core/opencl/opbase.hxx:451
unsigned long sc::opencl::DynamicKernelSlidingArgument::GenReductionLoopHeader(sc::opencl::outputstream &,_Bool &)
sc/source/core/opencl/opbase.hxx:483
unsigned long sc::opencl::ParallelReductionVectorRef::GenReductionLoopHeader(sc::opencl::outputstream &,int,_Bool &)
-sc/source/filter/inc/workbookhelper.hxx:262
+sc/source/filter/inc/workbookhelper.hxx:260
_Bool oox::xls::WorkbookHelper::importOoxFragment(const rtl::Reference<oox::core::FragmentHandler> &,oox::core::FastParser &)
sc/source/filter/xml/XMLStylesExportHelper.hxx:174
_Bool ScFormatRangeStyles::AddStyleName(const rtl::OUString &,int &,const _Bool)
@@ -256,14 +272,16 @@ sc/source/ui/vba/vbaformat.hxx:145
com::sun::star::uno::Any ScVbaFormat::getMergeCells()
sc/source/ui/vba/vbaformat.hxx:151
com::sun::star::uno::Any ScVbaFormat::getReadingOrder()
-sd/source/filter/eppt/pptx-epptooxml.cxx:133
+sd/source/filter/eppt/pptx-epptooxml.cxx:135
oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,enum PageType,_Bool)
-sd/source/ui/inc/DrawViewShell.hxx:252
+sd/source/ui/inc/DrawViewShell.hxx:253
_Bool sd::DrawViewShell::SelectPage(unsigned short,unsigned short)
sd/source/ui/inc/navigatr.hxx:120
_Bool SdNavigatorWin::InsertFile(const rtl::OUString &)
sd/source/ui/inc/OutlineViewShell.hxx:114
ErrCode sd::OutlineViewShell::ReadRtf(SvStream &)
+sd/source/ui/inc/View.hxx:175
+ SdrMediaObj * sd::View::InsertMediaObj(const rtl::OUString &,signed char &,const Point &,const Size &)
sd/source/ui/remotecontrol/IBluetoothSocket.hxx:36
int sd::IBluetoothSocket::write(const void *,unsigned int)
sdext/source/pdfimport/tree/style.hxx:155
@@ -272,27 +290,37 @@ sfx2/inc/autoredactdialog.hxx:139
_Bool SfxAutoRedactDialog::getTargets(std::vector<struct std::pair<struct RedactionTarget, rtl::OUString> > &)
slideshow/source/engine/animationnodes/animationbasenode.hxx:62
_Bool slideshow::internal::AnimationBaseNode::enqueueActivity() const
-sw/inc/calc.hxx:124
+svl/source/fsstor/fsstorage.hxx:56
+ ucbhelper::Content & FSStorage::GetContent()
+svx/inc/galleryfilestorage.hxx:103
+ SvStream & GalleryFileStorage::writeGalleryTheme(SvStream &,const GalleryTheme &,const GalleryThemeEntry *)
+svx/inc/galleryfilestorageentry.hxx:56
+ std::unique_ptr<GalleryTheme> & GalleryFileStorageEntry::getCachedTheme(std::unique_ptr<GalleryTheme> &)
+sw/inc/calc.hxx:125
SwSbxValue & SwSbxValue::MakeDouble()
-sw/inc/docary.hxx:299
- _Bool SwExtraRedlineTable::DeleteAllTableRedlines(SwDoc &,const SwTable &,_Bool,enum RedlineType)
+sw/inc/crsrsh.hxx:599
+ _Bool SwCursorShell::TrySelectOuterTable()
sw/inc/docary.hxx:300
- _Bool SwExtraRedlineTable::DeleteTableRowRedline(SwDoc *,const SwTableLine &,_Bool,enum RedlineType)
+ _Bool SwExtraRedlineTable::DeleteAllTableRedlines(SwDoc &,const SwTable &,_Bool,enum RedlineType)
sw/inc/docary.hxx:301
+ _Bool SwExtraRedlineTable::DeleteTableRowRedline(SwDoc *,const SwTableLine &,_Bool,enum RedlineType)
+sw/inc/docary.hxx:302
_Bool SwExtraRedlineTable::DeleteTableCellRedline(SwDoc *,const SwTableBox &,_Bool,enum RedlineType)
-sw/inc/editsh.hxx:635
+sw/inc/editsh.hxx:493
+ _Bool SwEditShell::OutlineUpDown(short)
+sw/inc/editsh.hxx:649
const GraphicAttr * SwEditShell::GetGraphicAttr(GraphicAttr &) const
-sw/inc/editsh.hxx:648
+sw/inc/editsh.hxx:662
_Bool SwEditShell::GetGrfSize(Size &) const
-sw/inc/editsh.hxx:813
+sw/inc/editsh.hxx:827
unsigned short SwEditShell::GetRefMarks(std::vector<rtl::OUString> *) const
-sw/inc/IDocumentUndoRedo.hxx:100
+sw/inc/IDocumentUndoRedo.hxx:99
_Bool IDocumentUndoRedo::Undo()
-sw/inc/IDocumentUndoRedo.hxx:181
+sw/inc/IDocumentUndoRedo.hxx:180
_Bool IDocumentUndoRedo::Repeat(sw::RepeatContext &,const unsigned short)
sw/inc/node.hxx:438
_Bool SwContentNode::GoNext(struct SwPosition *,enum SwCursorSkipMode) const
-sw/inc/tblafmt.hxx:267
+sw/inc/tblafmt.hxx:271
_Bool SwTableAutoFormatTable::Load(SvStream &)
sw/source/core/inc/laycache.hxx:64
_Bool SwLayoutCache::CompareLayout(const SwDoc &) const
@@ -304,21 +332,25 @@ sw/source/uibase/inc/drawbase.hxx:54
_Bool SwDrawBase::MouseMove(const MouseEvent &)
sw/source/uibase/inc/fldmgr.hxx:118
const com::sun::star::uno::Reference<com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const
-sw/source/uibase/inc/mailmergewizard.hxx:79
+sw/source/uibase/inc/mailmergewizard.hxx:78
_Bool SwMailMergeWizard::skipUntil(unsigned short)
+sw/source/uibase/inc/wrtsh.hxx:427
+ _Bool SwWrtShell::GotoFieldmark(const sw::mark::IFieldmark *const)
sw/source/uibase/inc/wrtsh.hxx:435
_Bool SwWrtShell::GotoContentControl(const SwFormatContentControl &,_Bool)
ucb/source/ucp/webdav-curl/ContentProperties.hxx:160
_Bool http_dav_ucp::CachableContentProperties::containsAllNames(const com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,std::vector<rtl::OUString> &) const
+unotools/source/ucbhelper/ucblockbytes.hxx:108
+ _Bool utl::UcbLockBytes::setInputStream(const com::sun::star::uno::Reference<com::sun::star::io::XInputStream> &,_Bool)
vcl/inc/font/FeatureCollector.hxx:45
_Bool vcl::font::FeatureCollector::collect()
-vcl/inc/impgraph.hxx:186
+vcl/inc/impgraph.hxx:187
_Bool ImpGraphic::swapOutGraphic(SvStream &)
-vcl/inc/pdf/pdfwriter_impl.hxx:1307
+vcl/inc/pdf/pdfwriter_impl.hxx:1334
_Bool vcl::PDFWriterImpl::setCurrentStructureElement(int)
-vcl/inc/pdf/pdfwriter_impl.hxx:1308
+vcl/inc/pdf/pdfwriter_impl.hxx:1335
_Bool vcl::PDFWriterImpl::setStructureAttribute(enum vcl::PDFWriter::StructAttribute,enum vcl::PDFWriter::StructAttributeValue)
-vcl/inc/pdf/pdfwriter_impl.hxx:1309
+vcl/inc/pdf/pdfwriter_impl.hxx:1336
_Bool vcl::PDFWriterImpl::setStructureAttributeNumerical(enum vcl::PDFWriter::StructAttribute,int)
vcl/inc/qt5/QtClipboard.hxx:36
QString QtClipboard::tr(const char *,const char *,int)
@@ -362,11 +394,11 @@ vcl/inc/salinst.hxx:177
_Bool SalInstance::CallEventCallback(const void *,int)
vcl/inc/salprn.hxx:113
_Bool SalPrinter::EndJob()
-vcl/inc/salvtables.hxx:1624
+vcl/inc/salvtables.hxx:1771
_Bool SalInstanceTreeView::get_iter_abs_pos(weld::TreeIter &,int) const
-vcl/inc/unx/gtk/gtkdata.hxx:335
+vcl/inc/unx/gtk/gtkdata.hxx:336
int GtkSalDisplay::CaptureMouse(SalFrame *)
-vcl/inc/unx/salframe.h:168
+vcl/inc/unx/salframe.h:169
_Bool X11SalFrame::Dispatch(union _XEvent *)
vcl/source/fontsubset/sft.cxx:122
_Bool vcl::(anonymous namespace)::HexFmt::Flush()
@@ -384,3 +416,5 @@ workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29
QString KF5FilePicker::tr(const char *,const char *,int)
workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29
QString KF5FilePicker::trUtf8(const char *,const char *,int)
+writerfilter/source/dmapper/TagLogger.hxx:59
+ typename enable_if<std::is_integral_v<T>, void>::type writerfilter::TagLogger::attribute(const std::basic_string<char> &,type-parameter-?-?)
diff --git a/cui/source/inc/optdict.hxx b/cui/source/inc/optdict.hxx
index e2dcf55953a8..8e382cc32e8f 100644
--- a/cui/source/inc/optdict.hxx
+++ b/cui/source/inc/optdict.hxx
@@ -89,7 +89,6 @@ private:
DECL_LINK(NewDelActionHdl, weld::Entry&, bool);
DECL_LINK(ModifyHdl, weld::Entry&, void);
DECL_LINK(EntrySizeAllocHdl, const Size&, void);
- DECL_STATIC_LINK(SvxEditDictionaryDialog, InsertTextHdl, OUString&, bool);
bool NewDelHdl(const weld::Widget*);
void ShowWords_Impl( sal_uInt16 nId );
diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
index 3537eddc9038..2c1846495a7c 100644
--- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
+++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
@@ -651,11 +651,6 @@ using namespace ::com::sun::star;
impl_setURL( _rURL, true);
}
- OUString OPostgresConnectionPageSetup::getURLNoPrefix( ) const
- {
- return impl_getURL();
- }
-
OUString OPostgresConnectionPageSetup::impl_getURL() const
{
// get the pure text
@@ -664,12 +659,6 @@ using namespace ::com::sun::star;
return sURL;
}
- IMPL_LINK_NOARG(OPostgresConnectionPageSetup, OnEditModified, weld::Entry&, void)
- {
- SetRoadmapStateValue(true);
- callModifiedHdl();
- }
-
// OMySQLJDBCConnectionPageSetup
OJDBCConnectionPageSetup::OJDBCConnectionPageSetup(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rCoreAttrs)
: OConnectionTabPageSetup(pPage, pController, "dbaccess/ui/jdbcconnectionpage.ui", "JDBCConnectionPage", rCoreAttrs,
diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx b/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx
index 15904be754f0..cd5d74156d4b 100644
--- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx
+++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx
@@ -232,7 +232,6 @@ namespace dbaui
::dbaccess::ODsnTypeCollection* m_pCollection;
private:
- DECL_LINK(OnEditModified, weld::Entry&, void);
virtual bool FillItemSet( SfxItemSet* _rCoreAttrs ) override;
virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) override;
virtual void fillControls(std::vector< std::unique_ptr<ISaveValueWrapper> >& _rControlList) override;
@@ -261,7 +260,6 @@ namespace dbaui
void impl_setURL( std::u16string_view _rURL, bool _bPrefix );
void setURLNoPrefix( std::u16string_view _rURL );
void setURL( std::u16string_view _rURL );
- OUString getURLNoPrefix( ) const;
OUString impl_getURL() const;
bool commitURL();
diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx
index 6f159e3b5139..97e5f4569a9a 100644
--- a/include/svx/gallery1.hxx
+++ b/include/svx/gallery1.hxx
@@ -55,8 +55,6 @@ public:
sal_uInt32 nId, bool bThemeNameFromResource );
~GalleryThemeEntry();
- const std::unique_ptr<GalleryFileStorageEntry>& getGalleryStorageEngineEntry() const { return mpGalleryStorageEngineEntry; }
-
GalleryStorageLocations& getGalleryStorageLocations() const;
GalleryTheme* createGalleryTheme(Gallery* pGallery);
diff --git a/include/vcl/alpha.hxx b/include/vcl/alpha.hxx
index d159ef657c2a..d10d4dcc7f31 100644
--- a/include/vcl/alpha.hxx
+++ b/include/vcl/alpha.hxx
@@ -69,7 +69,6 @@ private:
friend bool VCL_DLLPUBLIC ReadDIBBitmapEx(BitmapEx& rTarget, SvStream& rIStm, bool bFileHeader, bool bMSOFormat);
SAL_DLLPRIVATE const Bitmap& ImplGetBitmap() const;
- SAL_DLLPRIVATE void ImplSetBitmap( const Bitmap& rBitmap );
};
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index a732e77f3a97..0c794d496342 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -387,18 +387,6 @@ public:
*/
vcl::Region CreateRegion( const Color& rColor, const tools::Rectangle& rRect ) const;
- /** Replace all pixel where the given mask is on with the specified color
-
- @param rMask
- Mask specifying which pixel should be replaced
-
- @param rReplaceColor
- Color to be placed in all changed pixel
-
- @return true, if the operation was completed successfully.
- */
- bool Replace( const Bitmap& rMask, const Color& rReplaceColor );
-
/** Merge bitmap with given background color according to specified alpha mask
@param rAlpha
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index c96335f1076f..d93e96f6f7d0 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -1314,14 +1314,6 @@ public:
static css::uno::Reference< css::ui::dialogs::XFolderPicker2 >
createFolderPicker( const css::uno::Reference< css::uno::XComponentContext >& rServiceManager );
- /** Cancel all open dialogs
- */
- static void EndAllDialogs();
-
- /** Cancel all open popups
- */
- static void EndAllPopups();
-
/** Returns true, if the VCL plugin runs on the system event loop.
*
* AKA the VCL plugin can't handle nested event loops, like WASM or mobile.
diff --git a/package/inc/ByteChucker.hxx b/package/inc/ByteChucker.hxx
index c502ad6b5c42..f5d020205006 100644
--- a/package/inc/ByteChucker.hxx
+++ b/package/inc/ByteChucker.hxx
@@ -71,19 +71,6 @@ public:
WriteBytes( a4Sequence );
}
- void WriteInt64(sal_Int64 nInt64)
- {
- p8Sequence[0] = static_cast<sal_Int8>((nInt64 >> 0) & 0xFF);
- p8Sequence[1] = static_cast<sal_Int8>((nInt64 >> 8) & 0xFF);
- p8Sequence[2] = static_cast<sal_Int8>((nInt64 >> 16) & 0xFF);
- p8Sequence[3] = static_cast<sal_Int8>((nInt64 >> 24) & 0xFF);
- p8Sequence[4] = static_cast<sal_Int8>((nInt64 >> 32) & 0xFF);
- p8Sequence[5] = static_cast<sal_Int8>((nInt64 >> 40) & 0xFF);
- p8Sequence[6] = static_cast<sal_Int8>((nInt64 >> 48) & 0xFF);
- p8Sequence[7] = static_cast<sal_Int8>((nInt64 >> 56) & 0xFF);
- WriteBytes( a8Sequence );
- }
-
void WriteUInt64(sal_uInt64 nuInt64)
{
p8Sequence[0] = static_cast<sal_Int8>((nuInt64 >> 0) & 0xFF);
diff --git a/package/source/zipapi/MemoryByteGrabber.hxx b/package/source/zipapi/MemoryByteGrabber.hxx
index de59756d2187..d474be40cda5 100644
--- a/package/source/zipapi/MemoryByteGrabber.hxx
+++ b/package/source/zipapi/MemoryByteGrabber.hxx
@@ -92,22 +92,6 @@ public:
return nInt32;
}
- sal_Int64 ReadInt64()
- {
- if (mnCurrent + 8 > mnEnd)
- return 0;
-
- sal_Int64 nInt64 = mpBuffer[mnCurrent++] & 0xFF;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 8;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 16;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 24;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 32;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 40;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 48;
- nInt64 |= static_cast<sal_Int64>(mpBuffer[mnCurrent++] & 0xFF) << 56;
- return nInt64;
- }
-
sal_uInt64 ReadUInt64()
{
if (mnCurrent + 8 > mnEnd)
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 285fcf1a7d31..300d6f7817e0 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -2036,8 +2036,6 @@ public:
SC_DLLPUBLIC SCROW FirstVisibleRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const;
SC_DLLPUBLIC SCROW LastVisibleRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const;
SCROW CountVisibleRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const;
- SCROW CountHiddenRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const;
- SCCOL CountHiddenCols(SCROW nStartCol, SCROW nEndCol, SCTAB nTab) const;
SC_DLLPUBLIC bool RowFiltered(SCROW nRow, SCTAB nTab, SCROW* pFirstRow = nullptr, SCROW* pLastRow = nullptr) const;
bool HasFilteredRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const;
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index cab1dc364b31..a33784cb722f 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -4560,22 +4560,6 @@ SCROW ScDocument::CountVisibleRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) c
return maTabs[nTab]->CountVisibleRows(nStartRow, nEndRow);
}
-SCROW ScDocument::CountHiddenRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const
-{
- if (!ValidTab(nTab) || nTab >= static_cast<SCTAB>(maTabs.size()) || !maTabs[nTab])
- return 0;
-
- return maTabs[nTab]->CountHiddenRows(nStartRow, nEndRow);
-}
-
-SCCOL ScDocument::CountHiddenCols(SCROW nStartCol, SCROW nEndCol, SCTAB nTab) const
-{
- if (!ValidTab(nTab) || nTab >= static_cast<SCTAB>(maTabs.size()) || !maTabs[nTab])
- return 0;
-
- return maTabs[nTab]->CountHiddenCols(nStartCol, nEndCol);
-}
-
bool ScDocument::RowFiltered(SCROW nRow, SCTAB nTab, SCROW* pFirstRow, SCROW* pLastRow) const
{
if (!ValidTab(nTab) || nTab >= static_cast<SCTAB>(maTabs.size()) || !maTabs[nTab])
diff --git a/sc/source/filter/xml/XMLExportIterator.hxx b/sc/source/filter/xml/XMLExportIterator.hxx
index f24e9b400c30..6690c92c627d 100644
--- a/sc/source/filter/xml/XMLExportIterator.hxx
+++ b/sc/source/filter/xml/XMLExportIterator.hxx
@@ -84,7 +84,6 @@ public:
using ScMyIteratorBase::UpdateAddress;
void AddNewShape(const ScMyShape& aShape);
- bool HasShapes() const { return !aShapeList.empty(); }
const ScMyShapeList& GetShapes() const { return aShapeList; }
virtual void SetCellData( ScMyCell& rMyCell ) override;
virtual void Sort() override;
diff --git a/sd/source/ui/inc/SlideSorter.hxx b/sd/source/ui/inc/SlideSorter.hxx
index 70656680f5f2..c922e5ce4238 100644
--- a/sd/source/ui/inc/SlideSorter.hxx
+++ b/sd/source/ui/inc/SlideSorter.hxx
@@ -185,9 +185,6 @@ private:
sd::Window* pContentWindow,
ScrollAdaptor* pHorizontalScrollBar,
ScrollAdaptor* pVerticalScrollBar);
- SlideSorter (
- ViewShellBase& rBase,
- vcl::Window& rParentWindow);
void Init();
/** Create the controls for the slide sorter. This are the tab bar
diff --git a/sd/source/ui/slidesorter/shell/SlideSorter.cxx b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
index 92427ab51568..534a7aa2fbf6 100644
--- a/sd/source/ui/slidesorter/shell/SlideSorter.cxx
+++ b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
@@ -43,27 +43,6 @@ using namespace ::com::sun::star;
namespace sd::slidesorter {
-namespace {
-class ContentWindow : public ::sd::Window
-{
-public:
- ContentWindow(vcl::Window& rParent, SlideSorter& rSlideSorter);
-
- void SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction);
- virtual void Paint(vcl::RenderContext& /*rRenderContext*/, const ::tools::Rectangle& rRect) override;
- virtual void KeyInput (const KeyEvent& rEvent) override;
- virtual void MouseMove (const MouseEvent& rEvent) override;
- virtual void MouseButtonUp (const MouseEvent& rEvent) override;
- virtual void MouseButtonDown (const MouseEvent& rEvent) override;
- virtual void Command (const CommandEvent& rEvent) override;
- virtual bool EventNotify (NotifyEvent& rEvent) override;
-
-private:
- SlideSorter& mrSlideSorter;
- rtl::Reference<FuPoor> mpCurrentFunction;
-};
-}
-
//===== SlideSorter ===========================================================
std::shared_ptr<SlideSorter> SlideSorter::CreateSlideSorter(
@@ -98,19 +77,6 @@ SlideSorter::SlideSorter (
{
}
-SlideSorter::SlideSorter (
- ViewShellBase& rBase,
- vcl::Window& rParentWindow)
- : mpViewShell(nullptr),
- mpViewShellBase(&rBase),
- mpContentWindow(VclPtr<ContentWindow>::Create(rParentWindow,*this )),
- mpHorizontalScrollBar(VclPtr<ScrollAdaptor>::Create(&rParentWindow, true)),
- mpVerticalScrollBar(VclPtr<ScrollAdaptor>::Create(&rParentWindow, false)),
- mpProperties(std::make_shared<controller::Properties>()),
- mpTheme(std::make_shared<view::Theme>(mpProperties))
-{
-}
-
void SlideSorter::Init()
{
if (mpViewShellBase != nullptr)
@@ -340,12 +306,6 @@ void SlideSorter::SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction)
GetViewShell()->SetCurrentFunction(rpFunction);
GetViewShell()->SetOldFunction(rpFunction);
}
- else
- {
- ContentWindow* pWindow = dynamic_cast<ContentWindow*>(GetContentWindow().get());
- if (pWindow != nullptr)
- pWindow->SetCurrentFunction(rpFunction);
- }
}
std::shared_ptr<controller::Properties> const & SlideSorter::GetProperties() const
@@ -360,67 +320,6 @@ std::shared_ptr<view::Theme> const & SlideSorter::GetTheme() const
return mpTheme;
}
-//===== ContentWindow =========================================================
-
-namespace {
-
-ContentWindow::ContentWindow(
- vcl::Window& rParent,
- SlideSorter& rSlideSorter)
- : ::sd::Window(&rParent),
- mrSlideSorter(rSlideSorter)
-{
- SetDialogControlFlags(GetDialogControlFlags() & ~DialogControlFlags::WantFocus);
- SetStyle(GetStyle() | WB_NOPOINTERFOCUS);
-}
-
-void ContentWindow::SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction)
-{
- mpCurrentFunction = rpFunction;
-}
-
-void ContentWindow::Paint (vcl::RenderContext& /*rRenderContext*/, const ::tools::Rectangle& rRect)
-{
- mrSlideSorter.Paint(rRect);
-}
-
-void ContentWindow::KeyInput (const KeyEvent& rEvent)
-{
- if (mpCurrentFunction.is())
- mpCurrentFunction->KeyInput(rEvent);
-}
-
-void ContentWindow::MouseMove (const MouseEvent& rEvent)
-{
- if (mpCurrentFunction.is())
- mpCurrentFunction->MouseMove(rEvent);
-}
-
-void ContentWindow::MouseButtonUp(const MouseEvent& rEvent)
-{
- if (mpCurrentFunction.is())
- mpCurrentFunction->MouseButtonUp(rEvent);
-}
-
-void ContentWindow::MouseButtonDown(const MouseEvent& rEvent)
-{
- if (mpCurrentFunction.is())
- mpCurrentFunction->MouseButtonDown(rEvent);
-}
-
-void ContentWindow::Command(const CommandEvent& rEvent)
-{
- if (mpCurrentFunction.is())
- mpCurrentFunction->Command(rEvent);
-}
-
-bool ContentWindow::EventNotify(NotifyEvent&)
-{
- return false;
-}
-
-} // end of anonymous namespace
-
} // end of namespace ::sd::slidesorter
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/inc/galleryfilestorage.hxx b/svx/inc/galleryfilestorage.hxx
index df3aecad7c80..bafbc13c7bad 100644
--- a/svx/inc/galleryfilestorage.hxx
+++ b/svx/inc/galleryfilestorage.hxx
@@ -54,7 +54,6 @@ private:
const INetURLObject& GetSdgURL() const { return maGalleryStorageLocations.GetSdgURL(); }
const INetURLObject& GetSdvURL() const { return maGalleryStorageLocations.GetSdvURL(); }
- const INetURLObject& GetStrURL() const { return maGalleryStorageLocations.GetStrURL(); }
const INetURLObject& GetThmURL() const { return maGalleryStorageLocations.GetThmURL(); }
public:
diff --git a/sw/inc/ndarr.hxx b/sw/inc/ndarr.hxx
index b7fd0bb2e078..7afe8d2bce46 100644
--- a/sw/inc/ndarr.hxx
+++ b/sw/inc/ndarr.hxx
@@ -223,10 +223,6 @@ public:
SwGrfFormatColl *pColl,
SwAttrSet const * pAutoAttr = nullptr ); ///< in ndgrf.cxx
- static SwGrfNode *MakeGrfNode( SwNode & rWhere,
- const GraphicObject& rGrfObj,
- SwGrfFormatColl *pColl ); ///< in ndgrf.cxx
-
SwOLENode *MakeOLENode( SwNode& rWhere,
const svt::EmbeddedObjectRef&,
SwGrfFormatColl *pColl ); ///< in ndole.cxx
diff --git a/sw/inc/ndtxt.hxx b/sw/inc/ndtxt.hxx
index c16a643ec76c..3f99919f77b2 100644
--- a/sw/inc/ndtxt.hxx
+++ b/sw/inc/ndtxt.hxx
@@ -540,10 +540,6 @@ public:
SwTwips GetAdditionalIndentForStartingNewList() const;
- void ClearLRSpaceItemDueToListLevelIndents(
- std::unique_ptr<SvxFirstLineIndentItem>& o_rFirstLineItem,
- std::unique_ptr<SvxTextLeftMarginItem>& o_rTextLeftMarginItem) const;
-
/** return left margin for tab stop position calculation
Needed for text formatting
diff --git a/sw/source/core/draw/dflyobj.cxx b/sw/source/core/draw/dflyobj.cxx
index 31a193a45119..b7001277b2c0 100644
--- a/sw/source/core/draw/dflyobj.cxx
+++ b/sw/source/core/draw/dflyobj.cxx
@@ -130,12 +130,6 @@ SwFlyDrawObj::SwFlyDrawObj(SdrModel& rSdrModel)
{
}
-SwFlyDrawObj::SwFlyDrawObj(SdrModel& rSdrModel, SwFlyDrawObj const& rSource)
- : SdrObject(rSdrModel, rSource)
- , mbIsTextBox(false)
-{
-}
-
SwFlyDrawObj::~SwFlyDrawObj()
{
}
diff --git a/sw/source/core/graphic/ndgrf.cxx b/sw/source/core/graphic/ndgrf.cxx
index e96c7557ba69..5d7d60052926 100644
--- a/sw/source/core/graphic/ndgrf.cxx
+++ b/sw/source/core/graphic/ndgrf.cxx
@@ -421,14 +421,6 @@ SwGrfNode * SwNodes::MakeGrfNode( SwNode & rWhere,
return pNode;
}
-SwGrfNode * SwNodes::MakeGrfNode( SwNode & rWhere,
- const GraphicObject& rGrfObj,
- SwGrfFormatColl* pGrfColl )
-{
- OSL_ENSURE( pGrfColl, "MakeGrfNode: Formatpointer is 0." );
- return new SwGrfNode( rWhere, rGrfObj, pGrfColl, nullptr );
-}
-
Size SwGrfNode::GetTwipSize() const
{
if( !mnGrfSize.Width() && !mnGrfSize.Height() )
diff --git a/sw/source/core/inc/dflyobj.hxx b/sw/source/core/inc/dflyobj.hxx
index fe43f24c9045..701d63328923 100644
--- a/sw/source/core/inc/dflyobj.hxx
+++ b/sw/source/core/inc/dflyobj.hxx
@@ -46,7 +46,6 @@ private:
public:
SwFlyDrawObj(SdrModel& rSdrModel);
- SwFlyDrawObj(SdrModel& rSdrModel, SwFlyDrawObj const& rSource);
// for instantiation of this class while loading (via factory
virtual rtl::Reference<SdrObject> CloneSdrObject(SdrModel& rTargetModel) const override;
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index f2dd7a67d992..f46fbdc69c77 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -3424,33 +3424,6 @@ SwTwips SwTextNode::GetAdditionalIndentForStartingNewList() const
return nAdditionalIndent;
}
-// #i96772#
-void SwTextNode::ClearLRSpaceItemDueToListLevelIndents(
- std::unique_ptr<SvxFirstLineIndentItem>& o_rFirstLineItem,
- std::unique_ptr<SvxTextLeftMarginItem>& o_rTextLeftMarginItem) const
-{
- ::sw::ListLevelIndents const result(AreListLevelIndentsApplicable());
- if (result != ::sw::ListLevelIndents::No)
- {
- const SwNumRule* pRule = GetNumRule();
- if ( pRule && GetActualListLevel() >= 0 )
- {
- const SwNumFormat& rFormat = pRule->Get(lcl_BoundListLevel(GetActualListLevel()));
- if ( rFormat.GetPositionAndSpaceMode() == SvxNumberFormat::LABEL_ALIGNMENT )
- {
- if (result & ::sw::ListLevelIndents::FirstLine)
- {
- o_rFirstLineItem = std::make_unique<SvxFirstLineIndentItem>(RES_MARGIN_FIRSTLINE);
- }
- if (result & ::sw::ListLevelIndents::LeftMargin)
- {
- o_rTextLeftMarginItem = std::make_unique<SvxTextLeftMarginItem>(RES_MARGIN_TEXTLEFT);
- }
- }
- }
- }
-}
-
// #i91133#
tools::Long SwTextNode::GetLeftMarginForTabCalculation() const
{
diff --git a/sw/source/filter/ww8/writerhelper.cxx b/sw/source/filter/ww8/writerhelper.cxx
index 5a45a6dbb04b..528859565667 100644
--- a/sw/source/filter/ww8/writerhelper.cxx
+++ b/sw/source/filter/ww8/writerhelper.cxx
@@ -404,17 +404,6 @@ namespace sw
// DeduplicateItems(rItems);
}
- void DeduplicateItems(ww8::PoolItems & rItems)
- {
- if (rItems.find(RES_CHRATR_WEIGHT) != rItems.end()
- && rItems.find(RES_CHRATR_CJK_WEIGHT) != rItems.end())
- {
- // avoid duplicate w:b element (DOC and DOCX map Western and
- // CJK the same - inconsistently RTF maps CJK and CTL the same?)
- rItems.erase(rItems.find(RES_CHRATR_CJK_WEIGHT));
- }
- }
-
const SfxPoolItem *SearchPoolItems(const ww8::PoolItems &rItems,
sal_uInt16 eType)
{
diff --git a/sw/source/filter/ww8/writerhelper.hxx b/sw/source/filter/ww8/writerhelper.hxx
index 27442fceb0b9..632d1cb3a639 100644
--- a/sw/source/filter/ww8/writerhelper.hxx
+++ b/sw/source/filter/ww8/writerhelper.hxx
@@ -317,8 +317,6 @@ namespace sw
*/
void GetPoolItems(const SfxItemSet &rSet, ww8::PoolItems &rItems, bool bExportParentItemSet );
- void DeduplicateItems(ww8::PoolItems &rItems);
-
const SfxPoolItem *SearchPoolItems(const ww8::PoolItems &rItems,
sal_uInt16 eType);
diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx
index 9bbefdab98b6..6c1e6c74d954 100644
--- a/sw/source/filter/ww8/ww8par.hxx
+++ b/sw/source/filter/ww8/ww8par.hxx
@@ -1916,8 +1916,6 @@ public: // really private, but can only be done public
short ImportSprm(const sal_uInt8* pPos, sal_Int32 nMemLen, sal_uInt16 nId = 0);
bool SearchRowEnd(WW8PLCFx_Cp_FKP* pPap,WW8_CP &rStartCp, int nLevel) const;
- /// Seek to the end of the table with pPap, returns true on success.
- bool SearchTableEnd(WW8PLCFx_Cp_FKP* pPap) const;
const WW8Fib& GetFib() const { return *m_xWwFib; }
SwDoc& GetDoc() const { return m_rDoc; }
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index 8e145ee4e90a..ee70150ccfc8 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -388,45 +388,6 @@ bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
return false;
}
-bool SwWW8ImplReader::SearchTableEnd(WW8PLCFx_Cp_FKP* pPap) const
-{
- if (m_bVer67)
- // The below SPRM is for WW8 only.
- return false;
-
- WW8PLCFxDesc aRes;
- aRes.pMemPos = nullptr;
- aRes.nEndPos = pPap->Where();
- std::set<std::pair<WW8_CP, WW8_CP>> aPrevRes;
-
- while (pPap->HasFkp() && pPap->Where() != WW8_CP_MAX)
- {
- // See if the current pap is outside the table.
- SprmResult aSprmRes = pPap->HasSprm(NS_sprm::PFInTable::val);
- const sal_uInt8* pB = aSprmRes.pSprm;
- if (!pB || aSprmRes.nRemainingData < 1 || *pB != 1)
- // Yes, this is the position after the end of the table.
- return true;
-
- // It is, so seek to the next pap.
- aRes.nStartPos = aRes.nEndPos;
- aRes.pMemPos = nullptr;
- if (!pPap->SeekPos(aRes.nStartPos))
- return false;
-
- // Read the sprms and make sure we moved forward to avoid infinite loops.
- pPap->GetSprms(&aRes);
- auto aBounds(std::make_pair(aRes.nStartPos, aRes.nEndPos));
- if (!aPrevRes.insert(aBounds).second) //already seen these bounds, infinite loop
- {
- SAL_WARN("sw.ww8", "SearchTableEnd, loop in paragraph property chain");
- break;
- }
- }
-
- return false;
-}
-
ApoTestResults SwWW8ImplReader::TestApo(int nCellLevel, bool bTableRowEnd,
const WW8_TablePos *pTabPos)
{
diff --git a/vcl/inc/unx/saldisp.hxx b/vcl/inc/unx/saldisp.hxx
index 08f52f996a93..867393896233 100644
--- a/vcl/inc/unx/saldisp.hxx
+++ b/vcl/inc/unx/saldisp.hxx
@@ -93,7 +93,6 @@ public:
int GetDepth() const { return depth; }
Pixel GetTCPixel( Color nColor ) const;
- Color GetTCColor( Pixel nPixel ) const;
};
// A move-only flag, used by SalColormap to track ownership of its m_aVisual.visual:
@@ -354,8 +353,6 @@ public:
// this is an equivalent of gdk_x11_get_server_time()
Time GetX11ServerTime() const { return GetEventTimeImpl( true ); }
- bool XIfEventWithTimeout( XEvent*, XPointer, X_if_predicate ) const;
-
SalI18N_InputMethod* GetInputMethod() const { return pXLib_->GetInputMethod(); }
SalI18N_KeyboardExtension* GetKbdExtension() const { return mpKbdExtension; }
void SetKbdExtension(SalI18N_KeyboardExtension *pKbdExtension)
diff --git a/vcl/inc/unx/salgdi.h b/vcl/inc/unx/salgdi.h
index 1684530b30ff..521461318da9 100644
--- a/vcl/inc/unx/salgdi.h
+++ b/vcl/inc/unx/salgdi.h
@@ -75,7 +75,6 @@ public:
const SalDisplay* GetDisplay() const { return GetColormap().GetDisplay(); }
const SalVisual& GetVisual() const { return GetColormap().GetVisual(); }
Display* GetXDisplay() const { return GetColormap().GetXDisplay(); }
- Pixel GetPixel(Color nColor) const { return GetColormap().GetPixel(nColor); }
Drawable GetDrawable() const { return m_hDrawable; }
};
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index c61d9ea0f2aa..6ee03f1ed9d4 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -307,16 +307,6 @@ IMPL_STATIC_LINK_NOARG( ImplSVAppData, ImplEndAllDialogsMsg, void*, void )
}
}
-void Application::EndAllDialogs()
-{
- Application::PostUserEvent( LINK( nullptr, ImplSVAppData, ImplEndAllDialogsMsg ) );
-}
-
-void Application::EndAllPopups()
-{
- Application::PostUserEvent( LINK( nullptr, ImplSVAppData, ImplEndAllPopupsMsg ) );
-}
-
void Application::notifyWindow(vcl::LOKWindowId /*nLOKWindowId*/,
const OUString& /*rAction*/,
const std::vector<vcl::LOKPayloadItem>& /*rPayload = std::vector<LOKPayloadItem>()*/) const
diff --git a/vcl/source/bitmap/alpha.cxx b/vcl/source/bitmap/alpha.cxx
index ab23c3e93427..f307dda63a28 100644
--- a/vcl/source/bitmap/alpha.cxx
+++ b/vcl/source/bitmap/alpha.cxx
@@ -63,13 +63,6 @@ const Bitmap& AlphaMask::ImplGetBitmap() const
return *this;
}
-void AlphaMask::ImplSetBitmap( const Bitmap& rBitmap )
-{
- SAL_WARN_IF(rBitmap.getPixelFormat() != vcl::PixelFormat::N8_BPP, "vcl.gdi", "Bitmap should be 8bpp, not " << vcl::pixelFormatBitCount(rBitmap.getPixelFormat()) << "bpp" );
- SAL_WARN_IF( !rBitmap.HasGreyPalette8Bit(), "vcl.gdi", "Bitmap isn't greyscale" );
- *static_cast<Bitmap*>(this) = rBitmap;
-}
-
Bitmap const & AlphaMask::GetBitmap() const
{
return ImplGetBitmap();
diff --git a/vcl/source/bitmap/bitmappaint.cxx b/vcl/source/bitmap/bitmappaint.cxx
index 388dbe89c57b..f454aa97affa 100644
--- a/vcl/source/bitmap/bitmappaint.cxx
+++ b/vcl/source/bitmap/bitmappaint.cxx
@@ -706,81 +706,6 @@ vcl::Region Bitmap::CreateRegion(const Color& rColor, const tools::Rectangle& rR
return aRegion;
}
-bool Bitmap::Replace(const Bitmap& rMask, const Color& rReplaceColor)
-{
- ScopedReadAccess pMaskAcc(const_cast<Bitmap&>(rMask));
- BitmapScopedWriteAccess pAcc(*this);
-
- if (!pMaskAcc || !pAcc)
- return false;
-
- const tools::Long nWidth = std::min(pMaskAcc->Width(), pAcc->Width());
- const tools::Long nHeight = std::min(pMaskAcc->Height(), pAcc->Height());
- const BitmapColor aMaskWhite(pMaskAcc->GetBestMatchingColor(COL_WHITE));
- BitmapColor aReplace;
-
- if (pAcc->HasPalette())
- {
- const sal_uInt16 nActColors = pAcc->GetPaletteEntryCount();
- const sal_uInt16 nMaxColors = 1 << pAcc->GetBitCount();
-
- // default to the nearest color
- aReplace = pAcc->GetBestMatchingColor(rReplaceColor);
-
- // for paletted images without a matching palette entry
- // look for an unused palette entry (NOTE: expensive!)
- if (pAcc->GetPaletteColor(aReplace.GetIndex()) != BitmapColor(rReplaceColor))
- {
- // if the palette has empty entries use the last one
- if (nActColors < nMaxColors)
- {
- pAcc->SetPaletteEntryCount(nActColors + 1);
- pAcc->SetPaletteColor(nActColors, rReplaceColor);
- aReplace = BitmapColor(static_cast<sal_uInt8>(nActColors));
- }
- else
- {
- std::unique_ptr<bool[]> pFlags(new bool[nMaxColors]);
-
- // Set all entries to false
- std::fill(pFlags.get(), pFlags.get() + nMaxColors, false);
-
- for (tools::Long nY = 0; nY < nHeight; nY++)
- {
- Scanline pScanline = pAcc->GetScanline(nY);
- for (tools::Long nX = 0; nX < nWidth; nX++)
- pFlags[pAcc->GetIndexFromData(pScanline, nX)] = true;
- }
-
- for (sal_uInt16 i = 0; i < nMaxColors; i++)
- {
- // Hurray, we do have an unused entry
- if (!pFlags[i])
- {
- pAcc->SetPaletteColor(i, rReplaceColor);
- aReplace = BitmapColor(static_cast<sal_uInt8>(i));
- }
- }
- }
- }
- }
- else
- aReplace = rReplaceColor;
-
- for (tools::Long nY = 0; nY < nHeight; nY++)
- {
- Scanline pScanline = pAcc->GetScanline(nY);
- Scanline pScanlineMask = pMaskAcc->GetScanline(nY);
- for (tools::Long nX = 0; nX < nWidth; nX++)
- {
- if (pMaskAcc->GetPixelFromData(pScanlineMask, nX) == aMaskWhite)
- pAcc->SetPixelOnData(pScanline, nX, aReplace);
- }
- }
-
- return true;
-}
-
bool Bitmap::Replace(const AlphaMask& rAlpha, const Color& rMergeColor)
{
Bitmap aNewBmp(GetSizePixel(), vcl::PixelFormat::N24_BPP);
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index 2cbe95e50194..441d32a28adf 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -89,7 +89,6 @@
#include <vcl/TypeSerializer.hxx>
#include "FilterConfigCache.hxx"
-#include "graphicfilter_internal.hxx"
#include <graphic/GraphicFormatDetector.hxx>
#include <graphic/GraphicReader.hxx>
@@ -141,23 +140,6 @@ public:
// Helper functions
-sal_uInt8* ImplSearchEntry( sal_uInt8* pSource, sal_uInt8 const * pDest, sal_uLong nComp, sal_uLong nSize )
-{
- while ( nComp-- >= nSize )
- {
- sal_uLong i;
- for ( i = 0; i < nSize; i++ )
- {
- if ( ( pSource[i]&~0x20 ) != ( pDest[i]&~0x20 ) )
- break;
- }
- if ( i == nSize )
- return pSource;
- pSource++;
- }
- return nullptr;
-}
-
static OUString ImpGetExtension( std::u16string_view rPath )
{
OUString aExt;
diff --git a/vcl/source/filter/graphicfilter2.cxx b/vcl/source/filter/graphicfilter2.cxx
index fa5c25e30c93..1beeeaa3e8ac 100644
--- a/vcl/source/filter/graphicfilter2.cxx
+++ b/vcl/source/filter/graphicfilter2.cxx
@@ -26,7 +26,6 @@
#include <vcl/graphicfilter.hxx>
#include <unotools/ucbstreamhelper.hxx>
#include <graphic/GraphicFormatDetector.hxx>
-#include "graphicfilter_internal.hxx"
namespace
{
diff --git a/vcl/source/filter/graphicfilter_internal.hxx b/vcl/source/filter/graphicfilter_internal.hxx
deleted file mode 100644
index e7afbaf8cb79..000000000000
--- a/vcl/source/filter/graphicfilter_internal.hxx
+++ /dev/null
@@ -1,27 +0,0 @@
-/* -*- 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 <tools/solar.h>
-#include <tools/stream.hxx>
-
-sal_uInt8* ImplSearchEntry(sal_uInt8*, sal_uInt8 const*, sal_uLong, sal_uLong);
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/unx/generic/app/saldisp.cxx b/vcl/unx/generic/app/saldisp.cxx
index 3e2e58d9c319..92f6f3457c70 100644
--- a/vcl/unx/generic/app/saldisp.cxx
+++ b/vcl/unx/generic/app/saldisp.cxx
@@ -2313,36 +2313,6 @@ Time SalDisplay::GetEventTimeImpl( bool i_bAlwaysReget ) const
return m_nLastUserEventTime;
}
-bool SalDisplay::XIfEventWithTimeout( XEvent* o_pEvent, XPointer i_pPredicateData,
- X_if_predicate i_pPredicate ) const
-{
- /* #i99360# ugly workaround an X11 library bug
- this replaces the following call:
- XIfEvent( GetDisplay(), o_pEvent, i_pPredicate, i_pPredicateData );
- */
- bool bRet = true;
-
- if( ! XCheckIfEvent( GetDisplay(), o_pEvent, i_pPredicate, i_pPredicateData ) )
- {
- // wait for some event to arrive
- struct pollfd aFD;
- aFD.fd = ConnectionNumber(GetDisplay());
- aFD.events = POLLIN;
- aFD.revents = 0;
- tools::Long nTimeout = 1000;
- (void)poll(&aFD, 1, nTimeout);
- if( ! XCheckIfEvent( GetDisplay(), o_pEvent, i_pPredicate, i_pPredicateData ) )
- {
- (void)poll(&aFD, 1, nTimeout); // try once more for a packet of events from the Xserver
- if( ! XCheckIfEvent( GetDisplay(), o_pEvent, i_pPredicate, i_pPredicateData ) )
- {
- bRet = false;
- }
- }
- }
- return bRet;
-}
-
SalVisual::SalVisual()
: eRGBMode_(SalRGB::RGB), nRedShift_(0), nGreenShift_(0), nBlueShift_(0)
, nRedBits_(0), nGreenBits_(0), nBlueBits_(0)
@@ -2423,39 +2393,6 @@ SalVisual::SalVisual( const XVisualInfo* pXVI )
#define SALCOLOR SalRGB::RGB
#define SALCOLORREVERSE SalRGB::BGR
-Color SalVisual::GetTCColor( Pixel nPixel ) const
-{
- if( SALCOLOR == eRGBMode_ )
- return Color(ColorTransparency, nPixel);
-
- if( SALCOLORREVERSE == eRGBMode_ )
- return Color( (nPixel & 0x0000FF),
- (nPixel & 0x00FF00) >> 8,
- (nPixel & 0xFF0000) >> 16);
-
- Pixel r = nPixel & red_mask;
- Pixel g = nPixel & green_mask;
- Pixel b = nPixel & blue_mask;
-
- if( SalRGB::otherSalRGB != eRGBMode_ ) // 8+8+8=24
- return Color( r >> nRedShift_,
- g >> nGreenShift_,
- b >> nBlueShift_ );
-
- if( nRedShift_ > 0 ) r >>= nRedShift_; else r <<= -nRedShift_;
- if( nGreenShift_ > 0 ) g >>= nGreenShift_; else g <<= -nGreenShift_;
- if( nBlueShift_ > 0 ) b >>= nBlueShift_; else b <<= -nBlueShift_;
-
- if( nRedBits_ != 8 )
- r |= (r & 0xff) >> (8-nRedBits_);
- if( nGreenBits_ != 8 )
- g |= (g & 0xff) >> (8-nGreenBits_);
- if( nBlueBits_ != 8 )
- b |= (b & 0xff) >> (8-nBlueBits_);
-
- return Color( r, g, b );
-}
-
Pixel SalVisual::GetTCPixel( Color nColor ) const
{
if( SALCOLOR == eRGBMode_ )
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 7caa847e068e..1eb5753110c8 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -312,14 +312,6 @@ static bool IsFieldNestingAllowed(const FieldContextPtr& pOuter, const FieldCont
return true;
}
-uno::Any FloatingTableInfo::getPropertyValue(std::u16string_view propertyName)
-{
- for( beans::PropertyValue const & propVal : std::as_const(m_aFrameProperties) )
- if( propVal.Name == propertyName )
- return propVal.Value ;
- return uno::Any() ;
-}
-
DomainMapper_Impl::DomainMapper_Impl(
DomainMapper& rDMapper,
uno::Reference<uno::XComponentContext> xContext,
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
index 792897afdf09..1e02fd8d3949 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
@@ -401,18 +401,6 @@ struct LineNumberSettings
};
-/// Contains information about a table that will be potentially converted to a floating one at the section end.
-struct FloatingTableInfo
-{
- css::uno::Sequence<css::beans::PropertyValue> m_aFrameProperties;
-
- FloatingTableInfo(const css::uno::Sequence<css::beans::PropertyValue>& aFrameProperties)
- : m_aFrameProperties(aFrameProperties)
- {
- }
- css::uno::Any getPropertyValue(std::u16string_view propertyName);
-};
-
/// Stores original/in-file-format info about a single anchored object.
struct AnchoredObjectInfo
{
diff --git a/writerfilter/source/dmapper/PropertyMap.hxx b/writerfilter/source/dmapper/PropertyMap.hxx
index 650a51506bf8..645c3e036b4c 100644
--- a/writerfilter/source/dmapper/PropertyMap.hxx
+++ b/writerfilter/source/dmapper/PropertyMap.hxx
@@ -60,7 +60,6 @@ namespace com::sun::star {
namespace writerfilter::dmapper {
class DomainMapper_Impl;
-struct FloatingTableInfo;
struct AnchoredObjectInfo;
enum BorderPosition