[Libreoffice-commits] core.git: basic/source compilerplugins/clang connectivity/source cui/source desktop/source editeng/source i18npool/source include/editeng include/sfx2 include/svx include/tools include/vcl lotuswordpro/source reportdesign/inc reportdesign/source sc/inc sc/source sfx2/source sot/source svx/source sw/inc sw/source tools/source vbahelper/source vcl/source

Noel Grandin noel.grandin at collabora.co.uk
Wed Nov 29 06:29:39 UTC 2017


 basic/source/comp/exprnode.cxx                              |   12 
 basic/source/inc/expr.hxx                                   |    1 
 compilerplugins/clang/unusedmethods.results                 |  634 ++++++++++--
 compilerplugins/clang/unusedmethods.unused-returns.results  |  174 ---
 connectivity/source/drivers/evoab2/NResultSet.hxx           |    5 
 cui/source/customize/cfg.cxx                                |   39 
 cui/source/inc/cfg.hxx                                      |    2 
 desktop/source/migration/services/oo3extensionmigration.cxx |   12 
 desktop/source/migration/services/oo3extensionmigration.hxx |    1 
 editeng/source/rtf/svxrtf.cxx                               |   28 
 i18npool/source/localedata/LocaleNode.cxx                   |    8 
 i18npool/source/localedata/LocaleNode.hxx                   |    1 
 include/editeng/svxrtf.hxx                                  |    3 
 include/sfx2/objface.hxx                                    |    1 
 include/svx/obj3d.hxx                                       |    3 
 include/svx/svdpage.hxx                                     |    3 
 include/tools/globname.hxx                                  |    1 
 include/vcl/gdimtf.hxx                                      |    1 
 include/vcl/menu.hxx                                        |    1 
 include/vcl/window.hxx                                      |    3 
 lotuswordpro/source/filter/lwpdoc.cxx                       |   17 
 lotuswordpro/source/filter/lwpdoc.hxx                       |    1 
 lotuswordpro/source/filter/lwplayout.cxx                    |   32 
 lotuswordpro/source/filter/lwplayout.hxx                    |    3 
 lotuswordpro/source/filter/lwppara.hxx                      |    1 
 lotuswordpro/source/filter/lwppara1.cxx                     |   11 
 reportdesign/inc/UndoEnv.hxx                                |    2 
 reportdesign/source/core/sdr/UndoEnv.cxx                    |   26 
 reportdesign/source/ui/inc/ReportControllerObserver.hxx     |    5 
 reportdesign/source/ui/report/ReportControllerObserver.cxx  |   38 
 sc/inc/attrib.hxx                                           |   37 
 sc/inc/chartarr.hxx                                         |   17 
 sc/inc/document.hxx                                         |    2 
 sc/inc/olinetab.hxx                                         |    1 
 sc/source/core/data/attrib.cxx                              |   48 
 sc/source/core/data/documen2.cxx                            |    2 
 sc/source/core/data/olinetab.cxx                            |   54 -
 sc/source/core/tool/chartarr.cxx                            |   38 
 sc/source/ui/cctrl/checklistmenu.cxx                        |   13 
 sc/source/ui/inc/checklistmenu.hxx                          |    1 
 sfx2/source/appl/workwin.cxx                                |   22 
 sfx2/source/control/objface.cxx                             |   18 
 sfx2/source/inc/splitwin.hxx                                |    1 
 sfx2/source/inc/workwin.hxx                                 |    1 
 sot/source/sdstor/stgdir.cxx                                |   21 
 sot/source/sdstor/stgdir.hxx                                |    1 
 svx/source/engine3d/obj3d.cxx                               |   17 
 svx/source/form/navigatortreemodel.cxx                      |   42 
 svx/source/inc/fmexpl.hxx                                   |    2 
 svx/source/svdraw/svdpage.cxx                               |   13 
 sw/inc/SwNumberTree.hxx                                     |    7 
 sw/inc/pagedesc.hxx                                         |    2 
 sw/inc/view.hxx                                             |    1 
 sw/source/core/SwNumberTree/SwNumberTree.cxx                |   26 
 sw/source/core/access/acctable.cxx                          |   91 -
 sw/source/uibase/uiview/viewdraw.cxx                        |   22 
 tools/source/ref/globname.cxx                               |   13 
 vbahelper/source/msforms/vbacontrols.cxx                    |   13 
 vcl/source/gdi/gdimtf.cxx                                   |   15 
 vcl/source/window/menu.cxx                                  |   18 
 vcl/source/window/paint.cxx                                 |   18 
 vcl/source/window/window.cxx                                |   16 
 62 files changed, 598 insertions(+), 1064 deletions(-)

New commits:
commit a566fd1c1a50f9bcb4c69a19bdf4fb1955285d93
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Tue Nov 28 10:10:40 2017 +0200

    loplugin:unusedmethods
    
    Change-Id: I2efb5c0e5735c179314c6c5de87821cee3b033e1
    Reviewed-on: https://gerrit.libreoffice.org/45386
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/basic/source/comp/exprnode.cxx b/basic/source/comp/exprnode.cxx
index a1ae40a4eacc..ffe7509fe31b 100644
--- a/basic/source/comp/exprnode.cxx
+++ b/basic/source/comp/exprnode.cxx
@@ -177,18 +177,6 @@ bool SbiExprNode::IsLvalue()
     return IsVariable();
 }
 
-// Identify of the depth of a tree
-
-short SbiExprNode::GetDepth()
-{
-    if( IsOperand() ) return 0;
-    else
-    {
-        return std::max(pLeft->GetDepth(), pRight->GetDepth()) + 1;
-    }
-}
-
-
 // Adjustment of a tree:
 // 1. Constant Folding
 // 2. Type-Adjustment
diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx
index c50489175ba3..cefad1957a25 100644
--- a/basic/source/inc/expr.hxx
+++ b/basic/source/inc/expr.hxx
@@ -136,7 +136,6 @@ public:
     SbiSymDef* GetVar();
     SbiSymDef* GetRealVar();        // last variable in x.y.z
     SbiExprNode* GetRealNode();     // last node in x.y.z
-    short GetDepth();               // compute a tree's depth
     const OUString& GetString()     { return aStrVal; }
     short GetNumber()               { return (short)nVal; }
     SbiExprList* GetParameters()    { return aVar.pPar; }
diff --git a/compilerplugins/clang/unusedmethods.results b/compilerplugins/clang/unusedmethods.results
index caca2e63d579..161ad64dfc2e 100644
--- a/compilerplugins/clang/unusedmethods.results
+++ b/compilerplugins/clang/unusedmethods.results
@@ -1,13 +1,43 @@
-basegfx/source/range/b2drangeclipper.cxx:697
+basegfx/source/range/b2drangeclipper.cxx:693
     type-parameter-?-? eraseFromList(type-parameter-?-? &,const type-parameter-?-? &)
+basic/source/inc/buffer.hxx:41
+    void SbiBuffer::operator+=(signed char)
+basic/source/inc/buffer.hxx:42
+    void SbiBuffer::operator+=(short)
+basic/source/inc/buffer.hxx:46
+    void SbiBuffer::operator+=(int)
+basic/source/inc/expr.hxx:139
+    short SbiExprNode::GetDepth()
+connectivity/source/drivers/evoab2/NResultSet.hxx:121
+    class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> connectivity::evoab::OEvoabResultSet::operator*()
+connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:51
+    class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSetMetaData> connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
 connectivity/source/drivers/mork/mork_helper.cxx:36
     int main(int,char **)
-connectivity/source/inc/odbc/OPreparedStatement.hxx:74
+connectivity/source/inc/dbase/dindexnode.hxx:70
+    _Bool connectivity::dbase::ONDXKey::operator<(const class connectivity::dbase::ONDXKey &) const
+connectivity/source/inc/OColumn.hxx:119
+    _Bool connectivity::OColumn::isReadOnly() const
+connectivity/source/inc/OColumn.hxx:120
+    _Bool connectivity::OColumn::isWritable() const
+connectivity/source/inc/OColumn.hxx:121
+    _Bool connectivity::OColumn::isDefinitelyWritable() const
+connectivity/source/inc/OColumn.hxx:131
+    const class rtl::OUString & connectivity::OColumn::getSchemaName() const
+connectivity/source/inc/OColumn.hxx:133
+    const class rtl::OUString & connectivity::OColumn::getCatalogName() const
+connectivity/source/inc/odbc/OPreparedStatement.hxx:73
     void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,const type-parameter-?-?)
-connectivity/source/inc/odbc/OPreparedStatement.hxx:75
+connectivity/source/inc/odbc/OPreparedStatement.hxx:74
     void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,int,const type-parameter-?-?)
-connectivity/source/inc/OTypeInfo.hxx:40
-     connectivity::OTypeInfo::OTypeInfo()
+connectivity/source/inc/OTypeInfo.hxx:55
+    _Bool connectivity::OTypeInfo::operator==(const struct connectivity::OTypeInfo &) const
+connectivity/source/inc/OTypeInfo.hxx:56
+    _Bool connectivity::OTypeInfo::operator!=(const struct connectivity::OTypeInfo &) const
+cui/source/inc/cfg.hxx:561
+    void ToolbarSaveInData::SetSystemStyle(const class rtl::OUString &,int)
+dbaccess/source/ui/browser/genericcontroller.cxx:1258
+    const type-parameter-?-? & dbaui::(anonymous namespace)::SGI_identity::operator()(const type-parameter-?-? &) const
 dbaccess/source/ui/inc/indexcollection.hxx:54
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > >, class std::__debug::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > > dbaui::OIndexCollection::begin() const
 dbaccess/source/ui/inc/indexcollection.hxx:58
@@ -22,56 +52,188 @@ desktop/inc/lib/init.hxx:45
     _Bool desktop::CallbackFlushHandler::isEventLatchOn() const
 desktop/inc/lib/init.hxx:47
     _Bool desktop::CallbackFlushHandler::isPartTilePainting() const
+desktop/source/migration/services/oo3extensionmigration.hxx:81
+    void migration::OO3ExtensionMigration::checkAndCreateDirectory(const class INetURLObject &)
 drawinglayer/source/tools/emfpcustomlinecap.hxx:37
     void emfplushelper::EMFPCustomLineCap::SetAttributes(struct com::sun::star::rendering::StrokeAttributes &)
 drawinglayer/source/tools/emfpfont.hxx:38
-    _Bool emfplushelper::EMFPFont::Underline()
+    _Bool emfplushelper::EMFPFont::Underline() const
 drawinglayer/source/tools/emfpfont.hxx:39
-    _Bool emfplushelper::EMFPFont::Strikeout()
-drawinglayer/source/tools/emfppen.hxx:64
-    void emfplushelper::EMFPPen::SetStrokeWidth(struct com::sun::star::rendering::StrokeAttributes &,struct emfplushelper::EmfPlusHelperData &,const class basegfx::B2DHomMatrix &)
-drawinglayer/source/tools/emfppen.hxx:66
+    _Bool emfplushelper::EMFPFont::Strikeout() const
+drawinglayer/source/tools/emfppen.hxx:71
+    void emfplushelper::EMFPPen::SetStrokeWidth(struct com::sun::star::rendering::StrokeAttributes &,const struct emfplushelper::EmfPlusHelperData &,const class basegfx::B2DHomMatrix &)
+drawinglayer/source/tools/emfppen.hxx:73
     void emfplushelper::EMFPPen::SetStrokeAttributes(struct com::sun::star::rendering::StrokeAttributes &)
 drawinglayer/source/tools/emfpstringformat.hxx:51
-    _Bool emfplushelper::EMFPStringFormat::NoFitBlackBox()
+    _Bool emfplushelper::EMFPStringFormat::NoFitBlackBox() const
 drawinglayer/source/tools/emfpstringformat.hxx:52
-    _Bool emfplushelper::EMFPStringFormat::DisplayFormatControl()
+    _Bool emfplushelper::EMFPStringFormat::DisplayFormatControl() const
 drawinglayer/source/tools/emfpstringformat.hxx:53
-    _Bool emfplushelper::EMFPStringFormat::NoFontFallback()
+    _Bool emfplushelper::EMFPStringFormat::NoFontFallback() const
 drawinglayer/source/tools/emfpstringformat.hxx:54
-    _Bool emfplushelper::EMFPStringFormat::MeasureTrailingSpaces()
+    _Bool emfplushelper::EMFPStringFormat::MeasureTrailingSpaces() const
 drawinglayer/source/tools/emfpstringformat.hxx:55
-    _Bool emfplushelper::EMFPStringFormat::NoWrap()
+    _Bool emfplushelper::EMFPStringFormat::NoWrap() const
 drawinglayer/source/tools/emfpstringformat.hxx:56
-    _Bool emfplushelper::EMFPStringFormat::LineLimit()
+    _Bool emfplushelper::EMFPStringFormat::LineLimit() const
 drawinglayer/source/tools/emfpstringformat.hxx:57
-    _Bool emfplushelper::EMFPStringFormat::NoClip()
+    _Bool emfplushelper::EMFPStringFormat::NoClip() const
 drawinglayer/source/tools/emfpstringformat.hxx:58
-    _Bool emfplushelper::EMFPStringFormat::BypassGDI()
-include/basegfx/pixel/bpixel.hxx:57
+    _Bool emfplushelper::EMFPStringFormat::BypassGDI() const
+extensions/source/scanner/scanner.hxx:81
+    void ScannerManager::SetData(void *)
+framework/source/uiconfiguration/ImageList.hxx:51
+    _Bool ImageList::operator!=(const class ImageList &) const
+hwpfilter/source/mzstring.h:99
+    class MzString & MzString::operator<<(unsigned char)
+hwpfilter/source/mzstring.h:101
+    class MzString & MzString::operator<<(long)
+hwpfilter/source/mzstring.h:102
+    class MzString & MzString::operator<<(short)
+i18npool/source/localedata/LocaleNode.hxx:104
+    void LocaleNode::printR() const
+include/basegfx/color/bcolormodifier.hxx:76
+    _Bool basegfx::BColorModifier::operator!=(const class basegfx::BColorModifier &) const
+include/basegfx/curve/b2dcubicbezier.hxx:52
+    _Bool basegfx::B2DCubicBezier::operator==(const class basegfx::B2DCubicBezier &) const
+include/basegfx/curve/b2dcubicbezier.hxx:53
+    _Bool basegfx::B2DCubicBezier::operator!=(const class basegfx::B2DCubicBezier &) const
+include/basegfx/matrix/b2dhommatrix.hxx:84
+    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator+=(const class basegfx::B2DHomMatrix &)
+include/basegfx/matrix/b2dhommatrix.hxx:85
+    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator-=(const class basegfx::B2DHomMatrix &)
+include/basegfx/matrix/b2dhommatrix.hxx:90
+    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double)
+include/basegfx/matrix/b2dhommatrix.hxx:91
+    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double)
+include/basegfx/matrix/b2dhommatrixtools.hxx:132
+    class basegfx::B2DHomMatrix createRotateAroundCenterKeepAspectRatioStayInsideRange(const class basegfx::B2DRange &,double)
+include/basegfx/matrix/b2dhommatrixtools.hxx:232
+    double basegfx::utils::B2DHomMatrixBufferedOnDemandDecompose::getShearX() const
+include/basegfx/matrix/b3dhommatrix.hxx:95
+    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator+=(const class basegfx::B3DHomMatrix &)
+include/basegfx/matrix/b3dhommatrix.hxx:96
+    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator-=(const class basegfx::B3DHomMatrix &)
+include/basegfx/matrix/b3dhommatrix.hxx:103
+    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double)
+include/basegfx/matrix/b3dhommatrix.hxx:104
+    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double)
+include/basegfx/pixel/bpixel.hxx:56
      basegfx::BPixel::BPixel(unsigned char,unsigned char,unsigned char,unsigned char)
+include/basegfx/pixel/bpixel.hxx:87
+    _Bool basegfx::BPixel::operator==(const class basegfx::BPixel &) const
+include/basegfx/pixel/bpixel.hxx:92
+    _Bool basegfx::BPixel::operator!=(const class basegfx::BPixel &) const
+include/basegfx/point/b2dpoint.hxx:93
+    class basegfx::B2DPoint & basegfx::B2DPoint::operator*=(double)
+include/basegfx/point/b2ipoint.hxx:72
+    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class basegfx::B2IPoint &)
+include/basegfx/point/b2ipoint.hxx:81
+    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(int)
+include/basegfx/point/b2ipoint.hxx:98
+    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class basegfx::B2DHomMatrix &)
+include/basegfx/point/b3dpoint.hxx:85
+    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(const class basegfx::B3DPoint &)
+include/basegfx/point/b3dpoint.hxx:95
+    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(double)
 include/basegfx/polygon/b3dpolypolygon.hxx:109
     class basegfx::B3DPolygon * basegfx::B3DPolyPolygon::begin()
 include/basegfx/polygon/b3dpolypolygon.hxx:110
     class basegfx::B3DPolygon * basegfx::B3DPolyPolygon::end()
 include/basegfx/range/b1drange.hxx:52
      basegfx::B1DRange::B1DRange(double)
+include/basegfx/range/b1drange.hxx:74
+    _Bool basegfx::B1DRange::operator==(const class basegfx::B1DRange &) const
+include/basegfx/range/b2dpolyrange.hxx:66
+    _Bool basegfx::B2DPolyRange::operator!=(const class basegfx::B2DPolyRange &) const
 include/basegfx/range/b2ibox.hxx:67
      basegfx::B2IBox::B2IBox()
 include/basegfx/range/b2ibox.hxx:70
      basegfx::B2IBox::B2IBox(const class basegfx::B2ITuple &)
 include/basegfx/range/b2ibox.hxx:89
      basegfx::B2IBox::B2IBox(const class basegfx::B2ITuple &,const class basegfx::B2ITuple &)
+include/basegfx/range/b2ibox.hxx:107
+    _Bool basegfx::B2IBox::operator==(const class basegfx::B2IBox &) const
+include/basegfx/range/b2ibox.hxx:113
+    _Bool basegfx::B2IBox::operator!=(const class basegfx::B2IBox &) const
 include/basegfx/range/b2ibox.hxx:156
     _Bool basegfx::B2IBox::isInside(const class basegfx::B2ITuple &) const
 include/basegfx/range/b2ibox.hxx:172
     void basegfx::B2IBox::intersect(const class basegfx::B2IBox &)
 include/basegfx/range/b2irange.hxx:62
      basegfx::B2IRange::B2IRange(const class basegfx::B2ITuple &)
-include/basegfx/tuple/b2i64tuple.hxx:49
+include/basegfx/range/b2irange.hxx:198
+    void basegfx::B2IRange::expand(const class basegfx::B2IRange &)
+include/basegfx/range/b3drange.hxx:98
+    _Bool basegfx::B3DRange::operator!=(const class basegfx::B3DRange &) const
+include/basegfx/tuple/b2i64tuple.hxx:48
      basegfx::B2I64Tuple::B2I64Tuple()
+include/basegfx/tuple/b2i64tuple.hxx:91
+    const long & basegfx::B2I64Tuple::operator[](int) const
+include/basegfx/tuple/b2i64tuple.hxx:100
+    long & basegfx::B2I64Tuple::operator[](int)
+include/basegfx/tuple/b2i64tuple.hxx:111
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator+=(const class basegfx::B2I64Tuple &)
+include/basegfx/tuple/b2i64tuple.hxx:118
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator-=(const class basegfx::B2I64Tuple &)
+include/basegfx/tuple/b2i64tuple.hxx:125
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator/=(const class basegfx::B2I64Tuple &)
+include/basegfx/tuple/b2i64tuple.hxx:132
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator*=(const class basegfx::B2I64Tuple &)
+include/basegfx/tuple/b2i64tuple.hxx:139
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator*=(long)
+include/basegfx/tuple/b2i64tuple.hxx:146
+    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator/=(long)
+include/basegfx/tuple/b2i64tuple.hxx:153
+    class basegfx::B2I64Tuple basegfx::B2I64Tuple::operator-() const
+include/basegfx/tuple/b2i64tuple.hxx:163
+    _Bool basegfx::B2I64Tuple::operator!=(const class basegfx::B2I64Tuple &) const
+include/basegfx/tuple/b2ituple.hxx:128
+    class basegfx::B2ITuple & basegfx::B2ITuple::operator/=(const class basegfx::B2ITuple &)
+include/basegfx/tuple/b2ituple.hxx:135
+    class basegfx::B2ITuple & basegfx::B2ITuple::operator*=(const class basegfx::B2ITuple &)
+include/basegfx/tuple/b2ituple.hxx:149
+    class basegfx::B2ITuple & basegfx::B2ITuple::operator/=(int)
+include/basegfx/tuple/b2ituple.hxx:156
+    class basegfx::B2ITuple basegfx::B2ITuple::operator-() const
+include/basegfx/tuple/b2ituple.hxx:161
+    _Bool basegfx::B2ITuple::equalZero() const
+include/basegfx/tuple/b3dtuple.hxx:171
+    class basegfx::B3DTuple & basegfx::B3DTuple::operator/=(const class basegfx::B3DTuple &)
 include/basegfx/tuple/b3ituple.hxx:49
      basegfx::B3ITuple::B3ITuple()
+include/basegfx/tuple/b3ituple.hxx:88
+    const int & basegfx::B3ITuple::operator[](int) const
+include/basegfx/tuple/b3ituple.hxx:97
+    int & basegfx::B3ITuple::operator[](int)
+include/basegfx/tuple/b3ituple.hxx:108
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator+=(const class basegfx::B3ITuple &)
+include/basegfx/tuple/b3ituple.hxx:116
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator-=(const class basegfx::B3ITuple &)
+include/basegfx/tuple/b3ituple.hxx:124
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator/=(const class basegfx::B3ITuple &)
+include/basegfx/tuple/b3ituple.hxx:132
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator*=(const class basegfx::B3ITuple &)
+include/basegfx/tuple/b3ituple.hxx:140
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator*=(int)
+include/basegfx/tuple/b3ituple.hxx:148
+    class basegfx::B3ITuple & basegfx::B3ITuple::operator/=(int)
+include/basegfx/tuple/b3ituple.hxx:156
+    class basegfx::B3ITuple basegfx::B3ITuple::operator-() const
+include/basegfx/tuple/b3ituple.hxx:166
+    _Bool basegfx::B3ITuple::operator!=(const class basegfx::B3ITuple &) const
+include/basegfx/utils/b2dclipstate.hxx:75
+    _Bool basegfx::utils::B2DClipState::operator!=(const class basegfx::utils::B2DClipState &) const
+include/basegfx/utils/unopolypolygon.hxx:91
+    const class basegfx::B2DPolyPolygon & basegfx::unotools::UnoPolyPolygon::getPolyPolygonUnsafe() const
+include/basegfx/vector/b2ivector.hxx:75
+    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class basegfx::B2IVector &)
+include/basegfx/vector/b2ivector.hxx:84
+    class basegfx::B2IVector & basegfx::B2IVector::operator*=(int)
+include/basegfx/vector/b2ivector.hxx:118
+    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class basegfx::B2DHomMatrix &)
+include/basegfx/vector/b3dvector.hxx:85
+    class basegfx::B3DVector & basegfx::B3DVector::operator*=(const class basegfx::B3DVector &)
 include/basic/sbxvar.hxx:121
     struct SbxValues * SbxValue::data()
 include/codemaker/global.hxx:58
@@ -126,12 +288,24 @@ include/comphelper/logging.hxx:452
     _Bool 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:44
     _Bool isLocalRendering()
+include/comphelper/propagg.hxx:55
+    _Bool comphelper::internal::OPropertyAccessor::operator==(const struct comphelper::internal::OPropertyAccessor &) const
+include/comphelper/propagg.hxx:56
+    _Bool comphelper::internal::OPropertyAccessor::operator<(const struct comphelper::internal::OPropertyAccessor &) const
 include/comphelper/proparrhlp.hxx:87
     class cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper() const
 include/comphelper/sequence.hxx:342
     type-parameter-?-? sequenceToContainer(const Sequence<type-parameter-?-?> &)
+include/comphelper/types.hxx:56
+    _Bool getImplementation(type-parameter-?-? *&,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
+include/comphelper/unique_disposing_ptr.hxx:45
+    type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
 include/comphelper/unwrapargs.hxx:49
     void unwrapArgs(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
+include/connectivity/dbcharset.hxx:144
+    const class dbtools::OCharsetMap::CharsetIterator & dbtools::OCharsetMap::CharsetIterator::operator--()
+include/connectivity/FValue.hxx:327
+    unsigned short connectivity::ORowSetValue::operator unsigned short() const
 include/connectivity/FValue.hxx:396
     unsigned char connectivity::ORowSetValue::getUInt8() const
 include/connectivity/sdbcx/VGroup.hxx:68
@@ -146,16 +320,40 @@ include/desktop/crashreport.hxx:50
     void CrashReporter::storeExceptionHandler(class google_breakpad::ExceptionHandler *)
 include/desktop/crashreport.hxx:54
     void CrashReporter::updateMinidumpLocation()
+include/drawinglayer/geometry/viewinformation2d.hxx:128
+    _Bool drawinglayer::geometry::ViewInformation2D::operator!=(const class drawinglayer::geometry::ViewInformation2D &) const
+include/drawinglayer/primitive2d/baseprimitive2d.hxx:193
+    _Bool drawinglayer::primitive2d::BasePrimitive2D::operator!=(const class drawinglayer::primitive2d::BasePrimitive2D &) const
+include/drawinglayer/primitive3d/baseprimitive3d.hxx:113
+    _Bool drawinglayer::primitive3d::BasePrimitive3D::operator!=(const class drawinglayer::primitive3d::BasePrimitive3D &) const
+include/drawinglayer/texture/texture.hxx:44
+    _Bool drawinglayer::texture::GeoTexSvx::operator!=(const class drawinglayer::texture::GeoTexSvx &) const
+include/editeng/svxrtf.hxx:339
+    void SvxRTFItemStackType::MoveFullNode(const class EditNodeIdx &,const class EditNodeIdx &)
 include/filter/msfilter/mstoolbar.hxx:98
      Indent::Indent(_Bool)
-include/i18nlangtag/languagetag.hxx:257
+include/formula/opcode.hxx:521
+    class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > OpCodeEnumToString(enum OpCode)
+include/formula/tokenarray.hxx:178
+    class formula::FormulaTokenArrayReferencesIterator formula::FormulaTokenArrayReferencesIterator::operator++(int)
+include/i18nlangtag/languagetag.hxx:263
     enum LanguageTag::ScriptType LanguageTag::getScriptType() const
 include/o3tl/any.hxx:155
     class boost::optional<const struct o3tl::detail::Void> tryAccess(const class com::sun::star::uno::Any &)
-include/o3tl/array_view.hxx:67
-     o3tl::array_view::array_view<T>(const type-parameter-?-? *,unsigned long)
+include/o3tl/array_view.hxx:69
+     o3tl::array_view::array_view<T>(type-parameter-?-? *,unsigned long)
+include/o3tl/array_view.hxx:163
+    _Bool o3tl::array_view::operator<(const array_view<T> &) const
+include/o3tl/array_view.hxx:183
+    unsigned long std::hash::operator()(array_view<type-parameter-?-?>) const
 include/o3tl/cow_wrapper.hxx:310
     type-parameter-?-? * o3tl::cow_wrapper::get()
+include/o3tl/enumarray.hxx:105
+    typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->() const
+include/o3tl/enumarray.hxx:132
+    const typename type-parameter-?-?::value_type * o3tl::enumarray_const_iterator::operator->() const
+include/o3tl/enumarray.hxx:135
+    _Bool o3tl::enumarray_const_iterator::operator==(const enumarray_const_iterator<EA> &) const
 include/o3tl/string_view.hxx:178
      o3tl::basic_string_view::basic_string_view<charT, traits>()
 include/o3tl/string_view.hxx:551
@@ -196,8 +394,22 @@ include/o3tl/string_view.hxx:783
     _Bool operator>=(basic_string_view<type-parameter-?-?, type-parameter-?-?>,typename decay<basic_string_view<type-parameter-?-?, type-parameter-?-?> >::type)
 include/o3tl/string_view.hxx:789
     _Bool operator>=(typename decay<basic_string_view<type-parameter-?-?, type-parameter-?-?> >::type,basic_string_view<type-parameter-?-?, type-parameter-?-?>)
+include/o3tl/string_view.hxx:844
+    unsigned long std::hash::operator()(class o3tl::basic_string_view<char, struct std::char_traits<char> >)
+include/o3tl/string_view.hxx:849
+    unsigned long std::hash::operator()(class o3tl::basic_string_view<char16_t, struct std::char_traits<char16_t> >)
+include/o3tl/string_view.hxx:854
+    unsigned long std::hash::operator()(class o3tl::basic_string_view<char32_t, struct std::char_traits<char32_t> >)
+include/o3tl/string_view.hxx:859
+    unsigned long std::hash::operator()(class o3tl::basic_string_view<wchar_t, struct std::char_traits<wchar_t> >)
 include/o3tl/string_view.hxx:871
     class rtl::OUString toOUString(class o3tl::basic_string_view<char16_t, struct std::char_traits<char16_t> >)
+include/o3tl/strong_int.hxx:106
+    _Bool o3tl::strong_int::operator>(const strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> &) const
+include/o3tl/strong_int.hxx:107
+    _Bool o3tl::strong_int::operator>=(const strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> &) const
+include/o3tl/strong_int.hxx:111
+    strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator++(int)
 include/o3tl/typed_flags_set.hxx:118
     typename typed_flags<type-parameter-?-?>::Wrap operator~(typename typed_flags<type-parameter-?-?>::Wrap)
 include/o3tl/typed_flags_set.hxx:155
@@ -206,8 +418,12 @@ include/o3tl/typed_flags_set.hxx:348
     typename typed_flags<type-parameter-?-?>::Self operator^=(type-parameter-?-? &,typename typed_flags<type-parameter-?-?>::Wrap)
 include/o3tl/vector_pool.hxx:83
      o3tl::detail::struct_from_value::type::type()
+include/oox/helper/containerhelper.hxx:51
+    _Bool oox::ValueRange::operator!=(const struct oox::ValueRange &) const
 include/oox/helper/containerhelper.hxx:99
      oox::Matrix::Matrix<Type>(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference)
+include/oox/helper/containerhelper.hxx:113
+    typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
 include/oox/helper/containerhelper.hxx:117
     typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_iterator oox::Matrix::begin() const
 include/oox/helper/containerhelper.hxx:119
@@ -218,22 +434,58 @@ include/oox/helper/containerhelper.hxx:123
     typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::iterator oox::Matrix::row_end(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
 include/oox/helper/containerhelper.hxx:126
     typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::row_front(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
-include/oox/helper/propertymap.hxx:113
-    void oox::PropertyMap::dumpCode(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
 include/oox/helper/propertymap.hxx:114
+    void oox::PropertyMap::dumpCode(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
+include/oox/helper/propertymap.hxx:115
     void oox::PropertyMap::dumpData(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
+include/opencl/openclconfig.hxx:55
+    _Bool OpenCLConfig::ImplMatcher::operator!=(const struct OpenCLConfig::ImplMatcher &) const
 include/opencl/OpenCLZone.hxx:42
     _Bool OpenCLZone::isInInitialTest()
+include/sfx2/docfile.hxx:205
+    class rtl::OUString SfxMedium::GetConvertImagesFilter()
+include/sfx2/docfilt.hxx:81
+    _Bool SfxFilter::GetGpgEncryption() const
 include/sfx2/lokcharthelper.hxx:41
     void LokChartHelper::Invalidate()
 include/sfx2/msg.hxx:120
     const class std::type_info * SfxType0::Type() const
-include/svl/itempool.hxx:181
+include/sfx2/objface.hxx:81
+    const class SfxSlot * SfxInterface::GetRealSlot(unsigned short) const
+include/sfx2/sidebar/Context.hxx:55
+    _Bool sfx2::sidebar::Context::operator==(const class sfx2::sidebar::Context &) const
+include/svl/itempool.hxx:167
+    const type-parameter-?-? * SfxItemPool::GetItem2Default(TypedWhichId<type-parameter-?-?>) const
+include/svl/itempool.hxx:196
     void SfxItemPool::dumpAsXml(struct _xmlTextWriter *) const
+include/svx/ClassificationEditView.hxx:41
+    void svx::ClassificationEditView::SetCharAttributes()
+include/svx/ClassificationEditView.hxx:47
+    void svx::ClassificationEditView::SetNumType(enum SvxNumType)
+include/svx/ClassificationField.hxx:47
+    class rtl::OUString svx::ClassificationResult::getDisplayText() const
+include/svx/ClassificationField.hxx:52
+    _Bool svx::ClassificationResult::operator==(const class svx::ClassificationResult &) const
+include/svx/framelink.hxx:209
+    _Bool svx::frame::Style::operator==(const class svx::frame::Style &) const
+include/svx/framelink.hxx:250
+    _Bool svx::frame::StyleVectorCombination::operator<(const class svx::frame::StyleVectorCombination &) const
+include/svx/obj3d.hxx:127
+    void E3dObject::SetBoundVolInvalid()
+include/svx/svdlayer.hxx:72
+    _Bool SdrLayer::operator==(const class SdrLayer &) const
+include/svx/svdpage.hxx:144
+    unsigned long SdrObjList::CountAllObjects() const
+include/svx/xpoly.hxx:82
+    _Bool XPolygon::operator==(const class XPolygon &) const
 include/tools/bigint.hxx:94
      BigInt::BigInt(unsigned short)
 include/tools/bigint.hxx:103
      BigInt::BigInt(unsigned int)
+include/tools/bigint.hxx:114
+    unsigned short BigInt::operator unsigned short() const
+include/tools/bigint.hxx:115
+    unsigned long BigInt::operator unsigned long() const
 include/tools/bigint.hxx:137
     class BigInt operator-(const class BigInt &,const class BigInt &)
 include/tools/bigint.hxx:140
@@ -244,6 +496,8 @@ include/tools/bigint.hxx:146
     _Bool operator<=(const class BigInt &,const class BigInt &)
 include/tools/date.hxx:83
     _Bool Date::IsEmpty() const
+include/tools/date.hxx:214
+    _Bool Date::operator>=(const class Date &) const
 include/tools/datetime.hxx:47
      DateTime::DateTime(const class tools::Time &)
 include/tools/datetime.hxx:87
@@ -256,28 +510,120 @@ include/tools/datetime.hxx:92
     class DateTime operator+(const class DateTime &,const class tools::Time &)
 include/tools/datetime.hxx:93
     class DateTime operator-(const class DateTime &,const class tools::Time &)
-include/tools/fract.hxx:74
+include/tools/fract.hxx:69
+    class Fraction & Fraction::operator+=(double)
+include/tools/fract.hxx:70
+    class Fraction & Fraction::operator-=(double)
+include/tools/fract.hxx:71
+    class Fraction & Fraction::operator*=(double)
+include/tools/fract.hxx:86
     _Bool operator>=(const class Fraction &,const class Fraction &)
+include/tools/fract.hxx:105
+    class Fraction operator+(const class Fraction &,double)
+include/tools/fract.hxx:106
+    class Fraction operator-(const class Fraction &,double)
+include/tools/fract.hxx:108
+    class Fraction operator/(const class Fraction &,double)
+include/tools/globname.hxx:87
+    class SvGlobalName & SvGlobalName::operator+=(unsigned int)
+include/tools/poly.hxx:162
+    _Bool tools::Polygon::operator!=(const class tools::Polygon &) const
+include/tools/poly.hxx:249
+    _Bool tools::PolyPolygon::operator!=(const class tools::PolyPolygon &) const
+include/tools/ref.hxx:93
+    _Bool tools::SvRef::operator bool() const
+include/tools/weakbase.h:100
+    _Bool tools::WeakReference::operator==(const type-parameter-?-? *) const
+include/tools/weakbase.h:109
+    _Bool tools::WeakReference::operator<(const WeakReference<reference_type> &) const
+include/tools/weakbase.h:112
+    _Bool tools::WeakReference::operator>(const WeakReference<reference_type> &) const
+include/tools/XmlWriter.hxx:48
+    void tools::XmlWriter::attribute(const class rtl::OString &,int)
 include/unotest/assertion_traits.hxx:25
     _Bool CppUnit::assertion_traits::equal(signed char,signed char)
 include/unotest/assertion_traits.hxx:27
     class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > CppUnit::assertion_traits::toString(signed char)
+include/vcl/alpha.hxx:47
+    _Bool AlphaMask::operator==(const class AlphaMask &) const
+include/vcl/alpha.hxx:48
+    _Bool AlphaMask::operator!=(const class AlphaMask &) const
+include/vcl/animate.hxx:95
+    _Bool Animation::operator!=(const class Animation &) const
+include/vcl/bitmapex.hxx:58
+    _Bool BitmapEx::operator!=(const class BitmapEx &) const
 include/vcl/commandevent.hxx:250
      CommandMediaData::CommandMediaData(enum MediaCommand)
-include/vcl/menu.hxx:468
-    class tools::Rectangle MenuBar::GetMenuBarButtonRectPixel(unsigned short)
-include/vcl/opengl/OpenGLContext.hxx:99
+include/vcl/commandevent.hxx:257
+    _Bool CommandMediaData::GetPassThroughToOS() const
+include/vcl/cursor.hxx:94
+    _Bool vcl::Cursor::operator!=(const class vcl::Cursor &) const
+include/vcl/edit.hxx:227
+    class rtl::OUString Edit::GetPlaceholderText() const
+include/vcl/EnumContext.hxx:133
+    _Bool vcl::EnumContext::operator!=(const class vcl::EnumContext &)
+include/vcl/errcode.hxx:81
+    _Bool ErrCode::operator<(const class ErrCode &) const
+include/vcl/errcode.hxx:82
+    _Bool ErrCode::operator<=(const class ErrCode &) const
+include/vcl/errcode.hxx:83
+    _Bool ErrCode::operator>(const class ErrCode &) const
+include/vcl/errcode.hxx:84
+    _Bool ErrCode::operator>=(const class ErrCode &) const
+include/vcl/gdimtf.hxx:109
+    _Bool GDIMetaFile::operator!=(const class GDIMetaFile &) const
+include/vcl/gdimtf.hxx:160
+    void GDIMetaFile::RemoveAction(unsigned long)
+include/vcl/gradient.hxx:104
+    _Bool Gradient::operator!=(const class Gradient &) const
+include/vcl/hatch.hxx:56
+    _Bool Hatch::operator!=(const class Hatch &) const
+include/vcl/inputctx.hxx:63
+    _Bool InputContext::operator!=(const class InputContext &) const
+include/vcl/listctrl.hxx:48
+    void ListControl::deleteEntry(unsigned int)
+include/vcl/menu.hxx:297
+    _Bool Menu::HasValidEntries()
+include/vcl/opengl/OpenGLContext.hxx:98
     void OpenGLContext::UseNoProgram()
 include/vcl/opengl/OpenGLHelper.hxx:93
     void OpenGLHelper::debugMsgStreamWarn(const class std::basic_ostringstream<char> &)
 include/vcl/pdfwriter.hxx:565
      vcl::PDFWriter::PDFSignContext::PDFSignContext(class rtl::OStringBuffer &)
-include/vcl/svapp.hxx:168
+include/vcl/salnativewidgets.hxx:367
+    _Bool TabitemValue::isBothAligned() const
+include/vcl/salnativewidgets.hxx:368
+    _Bool TabitemValue::isNotAligned() const
+include/vcl/salnativewidgets.hxx:370
+    _Bool TabitemValue::isLast() const
+include/vcl/settings.hxx:412
+    void StyleSettings::SetUseFlatBorders(_Bool)
+include/vcl/settings.hxx:415
+    void StyleSettings::SetUseFlatMenus(_Bool)
+include/vcl/settings.hxx:427
+    void StyleSettings::SetHideDisabledMenuItems(_Bool)
+include/vcl/settings.hxx:480
+    void StyleSettings::SetTitleHeight(long)
+include/vcl/settings.hxx:483
+    void StyleSettings::SetFloatTitleHeight(long)
+include/vcl/settings.hxx:494
+    void StyleSettings::SetSpinSize(long)
+include/vcl/settings.hxx:655
+    _Bool HelpSettings::operator!=(const class HelpSettings &) const
+include/vcl/settings.hxx:711
+    _Bool AllSettings::operator!=(const class AllSettings &) const
+include/vcl/svapp.hxx:169
      ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
+include/vcl/svapp.hxx:804
+    void Application::AppEvent(const class ApplicationEvent &)
 include/vcl/syswin.hxx:193
     void SystemWindow::SetIdleDebugName(const char *)
+include/vcl/textrectinfo.hxx:44
+    _Bool TextRectInfo::operator!=(const class TextRectInfo &) const
 include/vcl/threadex.hxx:99
      vcl::solarthread::detail::GenericSolarThreadExecutor::GenericSolarThreadExecutor<type-parameter-?-?, void>(const type-parameter-?-? &)
+include/vcl/txtattr.hxx:57
+    _Bool TextAttrib::operator!=(const class TextAttrib &) const
 include/vcl/uitest/uiobject.hxx:243
      TabPageUIObject::TabPageUIObject(const class VclPtr<class TabPage> &)
 include/vcl/uitest/uiobject.hxx:251
@@ -286,29 +632,93 @@ include/vcl/uitest/uiobject.hxx:312
      SpinUIObject::SpinUIObject(const class VclPtr<class SpinButton> &)
 include/vcl/uitest/uiobject.hxx:320
     class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > SpinUIObject::create(class vcl::Window *)
+include/vcl/wall.hxx:98
+    _Bool Wallpaper::operator!=(const class Wallpaper &) const
 include/vcl/window.hxx:428
     const char * ImplDbgCheckWindow(const void *)
+include/vcl/window.hxx:828
+    _Bool vcl::Window::IsLocked() const
+include/vcl/window.hxx:931
+    const class vcl::Region & vcl::Window::GetWindowRegionPixel() const
+include/vcl/window.hxx:932
+    _Bool vcl::Window::IsWindowRegionPixel() const
+lotuswordpro/source/filter/lwpdoc.hxx:178
+    void LwpDocument::MaxNumberOfPages(unsigned short &)
+lotuswordpro/source/filter/lwplayout.hxx:367
+    unsigned int LwpMiddleLayout::GetScalePercentage()
+lotuswordpro/source/filter/lwplayout.hxx:368
+    double LwpMiddleLayout::GetScaleWidth()
+lotuswordpro/source/filter/lwplayout.hxx:369
+    double LwpMiddleLayout::GetScaleHeight()
+lotuswordpro/source/filter/lwppara.hxx:183
+    void LwpPara::FindLayouts()
+o3tl/qa/cow_wrapper_clients.hxx:140
+    _Bool o3tltests::cow_wrapper_client4::operator==(const class o3tltests::cow_wrapper_client4 &) const
+o3tl/qa/cow_wrapper_clients.hxx:141
+    _Bool o3tltests::cow_wrapper_client4::operator!=(const class o3tltests::cow_wrapper_client4 &) const
+o3tl/qa/cow_wrapper_clients.hxx:142
+    _Bool o3tltests::cow_wrapper_client4::operator<(const class o3tltests::cow_wrapper_client4 &) const
+o3tl/qa/cow_wrapper_clients.hxx:193
+    _Bool o3tltests::cow_wrapper_client5::operator!=(const class o3tltests::cow_wrapper_client5 &) const
 oox/inc/drawingml/textliststyle.hxx:49
     void oox::drawingml::TextListStyle::dump() const
+reportdesign/inc/UndoEnv.hxx:130
+    void rptui::OXUndoEnvironment::TogglePropertyListening(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
+reportdesign/source/ui/inc/ReportControllerObserver.hxx:100
+    void rptui::OXReportControllerObserver::TogglePropertyListening(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
+reportdesign/source/ui/inc/ReportControllerObserver.hxx:107
+    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class com::sun::star::uno::Reference<class com::sun::star::container::XChild> *, class std::__cxx1998::vector<class com::sun::star::uno::Reference<class com::sun::star::container::XChild>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::container::XChild> > > >, class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::container::XChild>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::container::XChild> > > > rptui::OXReportControllerObserver::getSection(const class com::sun::star::uno::Reference<class com::sun::star::container::XChild> &) const
+sc/inc/address.hxx:650
+    _Bool ScRange::operator<=(const class ScRange &) const
+sc/inc/attrib.hxx:160
+     ScRangeItem::ScRangeItem(const unsigned short)
+sc/inc/bigrange.hxx:71
+    _Bool ScBigAddress::operator!=(const class ScBigAddress &) const
+sc/inc/chartarr.hxx:80
+    const class rtl::OUString & ScChartArray::GetName() const
+sc/inc/chartarr.hxx:94
+    void ScChartCollection::clear()
+sc/inc/chartarr.hxx:95
+    unsigned long ScChartCollection::size() const
+sc/inc/chartarr.hxx:96
+    _Bool ScChartCollection::empty() const
+sc/inc/chartarr.hxx:97
+    class ScChartArray * ScChartCollection::operator[](unsigned long)
+sc/inc/chartarr.hxx:98
+    const class ScChartArray * ScChartCollection::operator[](unsigned long) const
 sc/inc/columniterator.hxx:74
     int sc::ColumnIterator::getType() const
-sc/inc/compressedarray.hxx:158
-     ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? *,unsigned long)
-sc/inc/datamapper.hxx:79
+sc/inc/compressedarray.hxx:73
+    void ScCompressedArray::Resize(unsigned long)
+sc/inc/datamapper.hxx:82
     void sc::ExternalDataSource::setUpdateFrequency(double)
+sc/inc/datamapper.hxx:85
+    void sc::ExternalDataSource::setURL(const class rtl::OUString &)
+sc/inc/datamapper.hxx:86
+    void sc::ExternalDataSource::setProvider(const class rtl::OUString &)
 sc/inc/dpfilteredcache.hxx:144
     void ScDPFilteredCache::dump() const
-sc/inc/formulacell.hxx:443
+sc/inc/formulacell.hxx:446
     void ScFormulaCell::Dump() const
 sc/inc/formulagroup.hxx:140
     void sc::FormulaGroupInterpreter::enableOpenCL_UnitTestsOnly()
 sc/inc/formulagroup.hxx:141
     void sc::FormulaGroupInterpreter::disableOpenCL_UnitTestsOnly()
+sc/inc/olinetab.hxx:101
+    void ScOutlineArray::RemoveSub(int,int,unsigned long)
 sc/inc/postit.hxx:47
      ScCaptionPtr::ScCaptionPtr(class SdrCaptionObj *)
 sc/inc/scdll.hxx:42
      ScDLL::ScDLL()
-sc/inc/table.hxx:293
+sc/inc/scmatrix.hxx:621
+    class ScFullMatrix & ScFullMatrix::operator+=(const class ScFullMatrix &)
+sc/inc/scmatrix.hxx:840
+    class ScVectorRefMatrix & ScVectorRefMatrix::operator+=(const class ScVectorRefMatrix &)
+sc/inc/stlalgorithm.hxx:62
+    _Bool sc::AlignedAllocator::operator==(const AlignedAllocator<T, Alignment> &) const
+sc/inc/stlalgorithm.hxx:63
+    _Bool sc::AlignedAllocator::operator!=(const AlignedAllocator<T, Alignment> &) const
+sc/inc/table.hxx:326
     _Bool ScTable::IsColRowTabValid(short,int,short) const
 sc/inc/userlist.hxx:86
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > *, class std::__cxx1998::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > > >, class std::__debug::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > > > ScUserList::begin() const
@@ -332,23 +742,23 @@ sc/qa/unit/ucalc.hxx:505
     void Test::testCondFormatUpdateInsertTab()
 sc/qa/unit/ucalc.hxx:506
     void Test::testCondFormatUpdateReference()
-sc/source/core/opencl/formulagroupcl.cxx:936
+sc/source/core/opencl/formulagroupcl.cxx:934
     _Bool sc::opencl::DynamicKernelSlidingArgument::NeedParallelReduction() const
-sc/source/core/opencl/formulagroupcl.cxx:943
+sc/source/core/opencl/formulagroupcl.cxx:941
     void sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowFunction(class std::basic_stringstream<char> &)
-sc/source/core/opencl/formulagroupcl.cxx:1224
+sc/source/core/opencl/formulagroupcl.cxx:1219
     void sc::opencl::ParallelReductionVectorRef::GenSlidingWindowFunction(class std::basic_stringstream<char> &)
-sc/source/core/opencl/formulagroupcl.cxx:1403
+sc/source/core/opencl/formulagroupcl.cxx:1398
     class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const
-sc/source/core/opencl/formulagroupcl.cxx:1437
+sc/source/core/opencl/formulagroupcl.cxx:1432
     unsigned long sc::opencl::ParallelReductionVectorRef::Marshal(struct _cl_kernel *,int,int,struct _cl_program *)
-sc/source/core/opencl/formulagroupcl.cxx:1613
+sc/source/core/opencl/formulagroupcl.cxx:1608
     unsigned long sc::opencl::ParallelReductionVectorRef::GetArrayLength() const
-sc/source/core/opencl/formulagroupcl.cxx:1615
+sc/source/core/opencl/formulagroupcl.cxx:1610
     unsigned long sc::opencl::ParallelReductionVectorRef::GetWindowSize() const
-sc/source/core/opencl/formulagroupcl.cxx:1617
+sc/source/core/opencl/formulagroupcl.cxx:1612
     unsigned long sc::opencl::ParallelReductionVectorRef::GetStartFixed() const
-sc/source/core/opencl/formulagroupcl.cxx:1619
+sc/source/core/opencl/formulagroupcl.cxx:1614
     unsigned long sc::opencl::ParallelReductionVectorRef::GetEndFixed() const
 sc/source/core/opencl/op_statistical.hxx:204
      sc::opencl::OpGeoMean::OpGeoMean()
@@ -358,38 +768,58 @@ sc/source/core/opencl/opbase.hxx:119
     void sc::opencl::DynamicKernelArgument::GenNumDeclRef(class std::basic_stringstream<char> &) const
 sc/source/core/opencl/opbase.hxx:121
     void sc::opencl::DynamicKernelArgument::GenStringDeclRef(class std::basic_stringstream<char> &) const
+sc/source/core/tool/scmatrix.cxx:2269
+    type-parameter-?-? * wrapped_iterator::operator->() const
+sc/source/core/tool/scmatrix.cxx:3263
+    const class svl::SharedString & matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const
 sc/source/filter/inc/tokstack.hxx:216
     _Bool TokenPool::GrowTripel(unsigned short)
+sc/source/filter/inc/xestream.hxx:106
+    class XclExpStream & XclExpStream::operator<<(float)
+sc/source/filter/inc/xiescher.hxx:159
+    class Color XclImpDrawObjBase::GetSolidLineColor(const struct XclObjLineData &) const
+sc/source/ui/inc/checklistmenu.hxx:249
+    void ScCheckListBox::ExpandChildren(class SvTreeListEntry *)
 sc/source/ui/inc/dataprovider.hxx:72
     _Bool sc::CSVFetchThread::IsRequestedTerminate()
 sc/source/ui/inc/dataprovider.hxx:73
     void sc::CSVFetchThread::Terminate()
 sc/source/ui/inc/dataprovider.hxx:74
     void sc::CSVFetchThread::EndThread()
-sc/source/ui/inc/dataprovider.hxx:98
+sc/source/ui/inc/dataprovider.hxx:99
     const class rtl::OUString & sc::DataProvider::GetURL() const
-sc/source/ui/inc/dataprovider.hxx:100
+sc/source/ui/inc/dataprovider.hxx:101
     class std::__debug::map<class rtl::OUString, class rtl::OUString, struct std::less<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, class rtl::OUString> > > sc::DataProvider::getDataSourcesForURL(const class rtl::OUString &)
-sc/source/ui/inc/dataprovider.hxx:151
-    void sc::ScDBDataManager::AddDataTransformation(class std::shared_ptr<class sc::DataTransformation>)
 sc/source/ui/inc/datatransformation.hxx:75
      sc::SortTransformation::SortTransformation(const struct ScSortParam &)
 sc/source/ui/inc/impex.hxx:92
      ScImportExport::ScImportExport(class ScDocument *,const class rtl::OUString &)
 sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:69
     void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,const char *,const class boost::optional<signed char>)
-sd/inc/sddll.hxx:50
+scaddins/source/analysis/analysishelper.hxx:822
+    _Bool sca::analysis::ScaDate::operator>=(const class sca::analysis::ScaDate &) const
+sccomp/source/solver/DifferentialEvolution.hxx:67
+    int DifferentialEvolutionAlgorithm::getLastChange()
+sccomp/source/solver/ParticelSwarmOptimization.hxx:85
+    int ParticleSwarmOptimizationAlgorithm::getLastChange()
+sd/inc/sddll.hxx:49
      SdDLL::SdDLL()
 sd/source/filter/ppt/pptinanimations.hxx:109
     void ppt::AnimationImporter::dump(const char *,long)
 sd/source/ui/inc/filedlg.hxx:54
     _Bool SdOpenSoundFileDialog::IsInsertAsLinkSelected()
+sd/source/ui/inc/optsitem.hxx:176
+    _Bool SdOptionsContents::operator==(const class SdOptionsContents &) const
+sd/source/ui/inc/unomodel.hxx:139
+    _Bool SdXImpressDocument::operator==(const class SdXImpressDocument &) const
 sd/source/ui/remotecontrol/ZeroconfService.hxx:39
      sd::ZeroconfService::ZeroconfService(const class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,unsigned int)
 sd/source/ui/remotecontrol/ZeroconfService.hxx:43
     const class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > & sd::ZeroconfService::getName() const
 sd/source/ui/remotecontrol/ZeroconfService.hxx:44
     void sd::ZeroconfService::setName(const char *)
+sfx2/source/inc/workwin.hxx:272
+    _Bool SfxWorkWindow::KnowsObjectBar_Impl(unsigned short) const
 slideshow/source/engine/activities/activitiesfactory.cxx:173
     void slideshow::internal::(anonymous namespace)::FromToByActivity::startAnimation()
 slideshow/source/engine/activities/activitiesfactory.cxx:241
@@ -416,12 +846,26 @@ slideshow/source/engine/animationfactory.cxx:442
     void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &)
 slideshow/source/engine/animationfactory.cxx:446
     void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &)
+slideshow/source/engine/animationfactory.cxx:519
+    _Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(const typename type-parameter-?-?::ValueType &)
+slideshow/source/engine/animationfactory.cxx:534
+    _Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(typename type-parameter-?-?::ValueType)
 slideshow/source/engine/animationfactory.cxx:547
     typename type-parameter-?-?::ValueType slideshow::internal::(anonymous namespace)::GenericAnimation::getUnderlyingValue() const
 slideshow/source/engine/opengl/TransitionImpl.hxx:180
     void OGLTransitionImpl::finish(double,double,double,double,double)
 slideshow/source/inc/shapeattributelayer.hxx:391
     void slideshow::internal::ShapeAttributeLayer::setCharRotationAngle(const double &)
+sot/source/sdstor/stgdir.hxx:71
+    _Bool StgDirEntry::IsContained(class StgDirEntry *)
+svgio/inc/svgstyleattributes.hxx:352
+    class svgio::svgreader::SvgNumber svgio::svgreader::SvgStyleAttributes::getStrokeDashOffset() const
+svgio/inc/svgstyleattributes.hxx:376
+    enum svgio::svgreader::FontStretch svgio::svgreader::SvgStyleAttributes::getFontStretch() const
+svx/source/inc/fmexpl.hxx:349
+    void svxform::NavigatorTreeModel::ClearBranch(const class FmFormData *)
+svx/source/inc/fmexpl.hxx:368
+    class SdrObject * svxform::NavigatorTreeModel::Search(class SdrObjListIter &,const class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &)
 sw/inc/dbgoutsw.hxx:53
     const char * dbg_out(const void *)
 sw/inc/dbgoutsw.hxx:55
@@ -486,42 +930,78 @@ sw/inc/docary.hxx:251
     class SwFrameFormat *const & SwFrameFormats::front() const
 sw/inc/docary.hxx:252
     class SwFrameFormat *const & SwFrameFormats::back() const
+sw/inc/IDocumentLinksAdministration.hxx:53
+    _Bool IDocumentLinksAdministration::GetData(const class rtl::OUString &,const class rtl::OUString &,class com::sun::star::uno::Any &) const
+sw/inc/IDocumentLinksAdministration.hxx:55
+    _Bool IDocumentLinksAdministration::SetData(const class rtl::OUString &,const class rtl::OUString &,const class com::sun::star::uno::Any &)
+sw/inc/IMark.hxx:65
+    _Bool sw::mark::IMark::operator<(const class sw::mark::IMark &) const
+sw/inc/pagedesc.hxx:270
+    _Bool SwPageDesc::operator<(const class SwPageDesc &) const
 sw/inc/pagedesc.hxx:418
     void SwPageDescs::erase(class SwPageDesc *const &)
 sw/inc/pagedesc.hxx:426
     class SwPageDesc *const & SwPageDescs::front() const
 sw/inc/pagedesc.hxx:427
     class SwPageDesc *const & SwPageDescs::back() const
+sw/inc/rdfhelper.hxx:59
+    void SwRDFHelper::cloneStatements(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::rdf::XResource> &,const class com::sun::star::uno::Reference<class com::sun::star::rdf::XResource> &)
+sw/inc/rdfhelper.hxx:77
+    void SwRDFHelper::removeTextNodeStatement(const class rtl::OUString &,class SwTextNode &,const class rtl::OUString &,const class rtl::OUString &)
+sw/inc/rdfhelper.hxx:80
+    void SwRDFHelper::updateTextNodeStatement(const class rtl::OUString &,const class rtl::OUString &,class SwTextNode &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
 sw/inc/ring.hxx:204
      sw::RingIterator::RingIterator<value_type>()
 sw/inc/swatrset.hxx:227
     const class SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const
+sw/inc/SwNumberTree.hxx:287
+    void SwNumberTreeNode::ValidateTree()
 sw/inc/swrect.hxx:105
     class SvStream & WriteSwRect(class SvStream &,const class SwRect &)
-sw/qa/extras/inc/swmodeltestbase.hxx:523
+sw/inc/view.hxx:531
+    _Bool SwView::HasDrwObj(const class SdrObject *) const
+sw/qa/extras/inc/swmodeltestbase.hxx:543
     class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> SwModelTestBase::getParagraphAnchoredObject(const int,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextRange> &) const
-sw/qa/extras/uiwriter/uiwriter.cxx:5181
-    int main()
-sw/source/core/inc/frame.hxx:1184
+sw/source/core/access/acctable.cxx:86
+    void SwAccessibleTableData_Impl::CollectColumnHeaderData(const class SwFrame *)
+sw/source/core/access/acctable.cxx:87
+    void SwAccessibleTableData_Impl::CollectRowHeaderData(const class SwFrame *)
+sw/source/core/inc/frame.hxx:1334
     class Size SwRectFnSet::GetSize(const class SwRect &) const
-sw/source/core/inc/frame.hxx:1215
+sw/source/core/inc/frame.hxx:1365
     long SwRectFnSet::LeftDist(const class SwRect &,long) const
-sw/source/core/inc/frame.hxx:1216
+sw/source/core/inc/frame.hxx:1366
     long SwRectFnSet::RightDist(const class SwRect &,long) const
-sw/source/core/inc/frame.hxx:1224
+sw/source/core/inc/frame.hxx:1374
     long SwRectFnSet::XInc(long,long) const
-sw/source/core/text/porlin.hxx:127
+sw/source/core/inc/mvsave.hxx:162
+    _Bool ZSortFly::operator==(const class ZSortFly &) const
+sw/source/core/text/porlin.hxx:128
     _Bool SwLinePortion::IsTabRightPortion() const
+sw/source/core/text/porlin.hxx:182
+    class SvStream & SwLinePortion::operator<<(class SvStream &) const
 sw/source/core/text/txtpaint.hxx:73
      DbgRect::DbgRect(class OutputDevice *,const class tools::Rectangle &,const _Bool,unsigned int)
 sw/source/filter/ww8/ww8struc.hxx:241
      WW8_BRCVer6::WW8_BRCVer6()
-ucb/source/inc/regexpmap.hxx:378
+sw/source/uibase/inc/swcont.hxx:86
+    _Bool SwContent::operator==(const class SwContent &) const
+test/source/sheet/xsubtotalfield.cxx:28
+    _Bool CppUnit::assertion_traits::equal(const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &,const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
+test/source/sheet/xsubtotalfield.cxx:34
+    class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > CppUnit::assertion_traits::toString(const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
+ucb/source/inc/regexpmap.hxx:375
     RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::begin() const
-ucb/source/inc/regexpmap.hxx:382
+ucb/source/inc/regexpmap.hxx:379
     RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::end() const
 ucb/source/ucp/ftp/ftpurl.hxx:112
     class rtl::OUString ftp::FTPURL::child() const
+ucb/source/ucp/webdav-neon/NeonUri.hxx:65
+    _Bool webdav_ucp::NeonUri::operator!=(const class webdav_ucp::NeonUri &) const
+vbahelper/source/msforms/vbacontrols.cxx:69
+    void ControlArrayWrapper::getNestedControls(class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::awt::XControl>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::awt::XControl> > > &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XControlContainer> &)
+vcl/inc/fontselect.hxx:47
+    _Bool FontSelectPatternAttributes::operator!=(const class FontSelectPatternAttributes &) const
 vcl/inc/opengl/BufferObject.hxx:50
     void vcl::BufferObject::unbind()
 vcl/inc/opengl/PackedTextureAtlas.hxx:44
@@ -534,6 +1014,8 @@ vcl/inc/opengl/salbmp.hxx:86
     const class BitmapPalette & OpenGLSalBitmap::GetBitmapPalette() const
 vcl/inc/opengl/texture.hxx:114
     void OpenGLTexture::SaveToFile(const class rtl::OUString &)
+vcl/inc/opengl/texture.hxx:123
+    _Bool OpenGLTexture::operator!=(const class OpenGLTexture &) const
 vcl/inc/opengl/zone.hxx:41
     void OpenGLZone::relaxWatchdogTimings()
 vcl/inc/openglgdiimpl.hxx:109
@@ -544,23 +1026,37 @@ vcl/inc/openglgdiimpl.hxx:141
     void OpenGLSalGraphicsImpl::DrawMask(class OpenGLTexture &,unsigned int,const struct SalTwoRect &)
 vcl/inc/openglgdiimpl.hxx:145
     void OpenGLSalGraphicsImpl::DeferredTextDraw(const class OpenGLTexture &,const unsigned int,const struct SalTwoRect &)
+vcl/inc/PhysicalFontFace.hxx:79
+    int PhysicalFontFace::GetWidth() const
+vcl/inc/PhysicalFontFace.hxx:88
+    void PhysicalFontFace::SetBitmapSize(int,int)
 vcl/inc/regionband.hxx:27
     const char * ImplDbgTestRegionBand(const void *)
 vcl/inc/salmenu.hxx:46
      SalMenuButtonItem::SalMenuButtonItem()
+vcl/inc/salobj.hxx:67
+    _Bool SalObject::IsEraseBackgroundEnabled() const
+vcl/inc/saltimer.hxx:70
+     VersionedEvent::VersionedEvent()
+vcl/inc/saltimer.hxx:72
+    int VersionedEvent::GetNextEventVersion()
+vcl/inc/saltimer.hxx:91
+    _Bool VersionedEvent::ExistsValidEvent() const
+vcl/inc/saltimer.hxx:96
+    _Bool VersionedEvent::IsValidEventVersion(const int) const
 vcl/inc/salwtype.hxx:114
      SalMenuEvent::SalMenuEvent()
 vcl/inc/schedulerimpl.hxx:37
     const char * ImplSchedulerData::GetDebugName() const
 vcl/inc/unx/glyphcache.hxx:71
     void GlyphCache::ClearFontOptions()
-vcl/inc/unx/gtk/gtkdata.hxx:179
+vcl/inc/unx/gtk/gtkdata.hxx:191
     void GtkSalDisplay::RefreshMenusUnity()
 vcl/inc/unx/gtk/gtkinst.hxx:120
     void GtkDropTarget::fire_dragExit(const struct com::sun::star::datatransfer::dnd::DropTargetEvent &)
 vcl/inc/unx/saldata.hxx:68
     void X11SalData::initNWF()
-vcl/inc/unx/saldisp.hxx:361
+vcl/inc/unx/saldisp.hxx:364
     class SalXLib * SalDisplay::GetXLib() const
 vcl/inc/unx/salframe.h:189
     enum SalFrameStyleFlags X11SalFrame::GetStyle() const
@@ -568,6 +1064,8 @@ vcl/source/edit/textdat2.hxx:85
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class TETextPortion *const *, class std::__cxx1998::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > >, class std::__debug::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > > TETextPortionList::begin() const
 vcl/source/edit/textdat2.hxx:87
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class TETextPortion *const *, class std::__cxx1998::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > >, class std::__debug::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > > TETextPortionList::end() const
+vcl/source/filter/FilterConfigCache.hxx:89
+    class rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short)
 vcl/source/fontsubset/xlat.hxx:31
     unsigned short TranslateChar12(unsigned short)
 vcl/source/fontsubset/xlat.hxx:32
@@ -580,13 +1078,17 @@ vcl/source/fontsubset/xlat.hxx:35
     unsigned short TranslateChar16(unsigned short)
 vcl/source/gdi/pdfwriter_impl.hxx:1279
     void vcl::PDFWriterImpl::setAutoAdvanceTime(unsigned int,int)
-workdir/LexTarget/l10ntools/source/cfglex.cxx:3736
-    void YYWarning(const char *)
 workdir/LexTarget/l10ntools/source/xrmlex.cxx:730
     void YYWarning()
-writerfilter/source/ooxml/OOXMLPropertySet.hxx:161
+workdir/LexTarget/l10ntools/source/xrmlex.cxx:2226
+    void YYWarning(const char *)
+writerfilter/source/ooxml/OOXMLPropertySet.hxx:157
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > >, class std::__debug::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > > writerfilter::ooxml::OOXMLPropertySet::begin() const
-writerfilter/source/ooxml/OOXMLPropertySet.hxx:162
+writerfilter/source/ooxml/OOXMLPropertySet.hxx:158
     class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > >, class std::__debug::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > > writerfilter::ooxml::OOXMLPropertySet::end() const
+writerfilter/source/ooxml/OOXMLPropertySet.hxx:161
+    class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > writerfilter::ooxml::OOXMLPropertySet::toString()
+writerperfect/qa/unit/EPUBExportTest.cxx:596
+    int main()
 xmlsecurity/source/gpg/XMLEncryption.hxx:27
      XMLEncryptionGpg::XMLEncryptionGpg()
diff --git a/compilerplugins/clang/unusedmethods.unused-returns.results b/compilerplugins/clang/unusedmethods.unused-returns.results
index 1dbaac85bda1..eb7c5ba364da 100644
--- a/compilerplugins/clang/unusedmethods.unused-returns.results
+++ b/compilerplugins/clang/unusedmethods.unused-returns.results
@@ -28,96 +28,18 @@ chart2/source/view/main/OpenGLRender.hxx:104
     int OpenGLRender::RenderSymbol2DShape(float,float,int)
 chart2/source/view/main/OpenGLRender.hxx:121
     int OpenGLRender::Create2DCircle(int)
-connectivity/source/drivers/evoab2/NResultSet.hxx:123
-    class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> connectivity::evoab::OEvoabResultSet::operator*()
-connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:51
-    class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSetMetaData> connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
 connectivity/source/inc/java/lang/Object.hxx:118
     int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const
-connectivity/source/inc/OColumn.hxx:131
-    const class rtl::OUString & connectivity::OColumn::getSchemaName() const
-connectivity/source/inc/OColumn.hxx:133
-    const class rtl::OUString & connectivity::OColumn::getCatalogName() const
-connectivity/source/inc/odbc/OConnection.hxx:82
+connectivity/source/inc/odbc/OConnection.hxx:83
     short connectivity::odbc::OConnection::Construct(const class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &)
 cppcanvas/source/inc/canvasgraphichelper.hxx:59
     const class com::sun::star::uno::Reference<class com::sun::star::rendering::XGraphicDevice> & cppcanvas::internal::CanvasGraphicHelper::getGraphicDevice() const
-dbaccess/source/ui/browser/genericcontroller.cxx:1258
-    const type-parameter-?-? & dbaui::(anonymous namespace)::SGI_identity::operator()(const type-parameter-?-? &) const
 i18nlangtag/source/languagetag/languagetag.cxx:275
     const class rtl::OUString & LanguageTagImpl::getBcp47() const
-include/basegfx/matrix/b2dhommatrix.hxx:90
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double)
-include/basegfx/matrix/b2dhommatrix.hxx:91
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double)
-include/basegfx/matrix/b3dhommatrix.hxx:103
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double)
-include/basegfx/matrix/b3dhommatrix.hxx:104
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double)
-include/basegfx/point/b2dpoint.hxx:93
-    class basegfx::B2DPoint & basegfx::B2DPoint::operator*=(double)
-include/basegfx/point/b2ipoint.hxx:72
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class basegfx::B2IPoint &)
-include/basegfx/point/b2ipoint.hxx:81
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(int)
-include/basegfx/point/b2ipoint.hxx:98
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class basegfx::B2DHomMatrix &)
-include/basegfx/point/b3dpoint.hxx:85
-    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(const class basegfx::B3DPoint &)
-include/basegfx/point/b3dpoint.hxx:95
-    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(double)
-include/basegfx/utils/unopolypolygon.hxx:91
-    const class basegfx::B2DPolyPolygon & basegfx::unotools::UnoPolyPolygon::getPolyPolygonUnsafe() const
-include/basegfx/tuple/b2i64tuple.hxx:92
-    const long & basegfx::B2I64Tuple::operator[](int) const
-include/basegfx/tuple/b2i64tuple.hxx:101
-    long & basegfx::B2I64Tuple::operator[](int)
-include/basegfx/tuple/b2i64tuple.hxx:126
-    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator/=(const class basegfx::B2I64Tuple &)
-include/basegfx/tuple/b2i64tuple.hxx:133
-    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator*=(const class basegfx::B2I64Tuple &)
-include/basegfx/tuple/b2i64tuple.hxx:140
-    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator*=(long)
-include/basegfx/tuple/b2i64tuple.hxx:147
-    class basegfx::B2I64Tuple & basegfx::B2I64Tuple::operator/=(long)
-include/basegfx/tuple/b2i64tuple.hxx:154
-    class basegfx::B2I64Tuple basegfx::B2I64Tuple::operator-() const
-include/basegfx/tuple/b2ituple.hxx:128
-    class basegfx::B2ITuple & basegfx::B2ITuple::operator/=(const class basegfx::B2ITuple &)
-include/basegfx/tuple/b2ituple.hxx:135
-    class basegfx::B2ITuple & basegfx::B2ITuple::operator*=(const class basegfx::B2ITuple &)
-include/basegfx/tuple/b2ituple.hxx:149
-    class basegfx::B2ITuple & basegfx::B2ITuple::operator/=(int)
-include/basegfx/tuple/b2ituple.hxx:156
-    class basegfx::B2ITuple basegfx::B2ITuple::operator-() const
-include/basegfx/tuple/b3dtuple.hxx:171
-    class basegfx::B3DTuple & basegfx::B3DTuple::operator/=(const class basegfx::B3DTuple &)
-include/basegfx/tuple/b3ituple.hxx:88
-    const int & basegfx::B3ITuple::operator[](int) const
-include/basegfx/tuple/b3ituple.hxx:97
-    int & basegfx::B3ITuple::operator[](int)
-include/basegfx/tuple/b3ituple.hxx:124
-    class basegfx::B3ITuple & basegfx::B3ITuple::operator/=(const class basegfx::B3ITuple &)
-include/basegfx/tuple/b3ituple.hxx:132
-    class basegfx::B3ITuple & basegfx::B3ITuple::operator*=(const class basegfx::B3ITuple &)
-include/basegfx/tuple/b3ituple.hxx:140
-    class basegfx::B3ITuple & basegfx::B3ITuple::operator*=(int)
-include/basegfx/tuple/b3ituple.hxx:148
-    class basegfx::B3ITuple & basegfx::B3ITuple::operator/=(int)
-include/basegfx/tuple/b3ituple.hxx:156
-    class basegfx::B3ITuple basegfx::B3ITuple::operator-() const
 include/basegfx/vector/b2dvector.hxx:115
     class basegfx::B2DVector & basegfx::B2DVector::setLength(double)
-include/basegfx/vector/b2ivector.hxx:75
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class basegfx::B2IVector &)
-include/basegfx/vector/b2ivector.hxx:84
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(int)
 include/basegfx/vector/b2ivector.hxx:101
     class basegfx::B2IVector & basegfx::B2IVector::setLength(double)
-include/basegfx/vector/b2ivector.hxx:118
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class basegfx::B2DHomMatrix &)
-include/basegfx/vector/b3dvector.hxx:85
-    class basegfx::B3DVector & basegfx::B3DVector::operator*=(const class basegfx::B3DVector &)
 include/basegfx/vector/b3dvector.hxx:155
     class basegfx::B3DVector & basegfx::B3DVector::setLength(double)
 include/basegfx/vector/b3dvector.hxx:180
@@ -138,52 +60,36 @@ include/canvas/vclwrapper.hxx:134
     type-parameter-?-? & canvas::vcltools::VCLObject::get()
 include/canvas/vclwrapper.hxx:135
     const type-parameter-?-? & canvas::vcltools::VCLObject::get() const
-include/comphelper/unique_disposing_ptr.hxx:45
-    type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
-include/connectivity/FValue.hxx:327
-    unsigned short connectivity::ORowSetValue::operator unsigned short() const
-include/editeng/editview.hxx:219
+include/editeng/editview.hxx:220
     class ErrCode EditView::Read(class SvStream &,enum EETextFormat,class SvKeyValueIterator *)
 include/LibreOfficeKit/LibreOfficeKit.hxx:63
     struct _LibreOfficeKitDocument * lok::Document::get()
 include/LibreOfficeKit/LibreOfficeKit.hxx:71
     int lok::Document::getDocumentType()
-include/LibreOfficeKit/LibreOfficeKit.hxx:96
+include/LibreOfficeKit/LibreOfficeKit.hxx:97
     char * lok::Document::getPartPageRectangles()
-include/LibreOfficeKit/LibreOfficeKit.hxx:102
+include/LibreOfficeKit/LibreOfficeKit.hxx:103
     int lok::Document::getPart()
-include/LibreOfficeKit/LibreOfficeKit.hxx:120
+include/LibreOfficeKit/LibreOfficeKit.hxx:121
     char * lok::Document::getPartHash(int)
-include/LibreOfficeKit/LibreOfficeKit.hxx:162
+include/LibreOfficeKit/LibreOfficeKit.hxx:222
     int lok::Document::getTileMode()
-include/LibreOfficeKit/LibreOfficeKit.hxx:281
+include/LibreOfficeKit/LibreOfficeKit.hxx:387
     char * lok::Document::getTextSelection(const char *,char **)
-include/LibreOfficeKit/LibreOfficeKit.hxx:324
+include/LibreOfficeKit/LibreOfficeKit.hxx:430
     char * lok::Document::getCommandValues(const char *)
-include/LibreOfficeKit/LibreOfficeKit.hxx:366
+include/LibreOfficeKit/LibreOfficeKit.hxx:472
     int lok::Document::createView()
-include/LibreOfficeKit/LibreOfficeKit.hxx:393
+include/LibreOfficeKit/LibreOfficeKit.hxx:499
     int lok::Document::getView()
-include/LibreOfficeKit/LibreOfficeKit.hxx:401
+include/LibreOfficeKit/LibreOfficeKit.hxx:507
     int lok::Document::getViewsCount()
-include/LibreOfficeKit/LibreOfficeKit.hxx:410
+include/LibreOfficeKit/LibreOfficeKit.hxx:516
     unsigned char * lok::Document::renderFont(const char *,const char *,int *,int *)
-include/LibreOfficeKit/LibreOfficeKit.hxx:543
+include/LibreOfficeKit/LibreOfficeKit.hxx:651
     char * lok::Office::getFilterTypes()
-include/LibreOfficeKit/LibreOfficeKit.hxx:593
+include/LibreOfficeKit/LibreOfficeKit.hxx:705
     char * lok::Office::getVersionInfo()
-include/o3tl/array_view.hxx:158
-    unsigned long std::hash::operator()(array_view<type-parameter-?-?>)
-include/o3tl/enumarray.hxx:100
-    typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->()
-include/o3tl/string_view.hxx:844
-    unsigned long std::hash::operator()(class o3tl::basic_string_view<char, struct std::char_traits<char> >)
-include/o3tl/string_view.hxx:849
-    unsigned long std::hash::operator()(class o3tl::basic_string_view<char16_t, struct std::char_traits<char16_t> >)
-include/o3tl/string_view.hxx:854
-    unsigned long std::hash::operator()(class o3tl::basic_string_view<char32_t, struct std::char_traits<char32_t> >)
-include/o3tl/string_view.hxx:859
-    unsigned long std::hash::operator()(class o3tl::basic_string_view<wchar_t, struct std::char_traits<wchar_t> >)
 include/oox/dump/dumperbase.hxx:637
     long oox::dump::FlagsList::getIgnoreFlags() const
 include/oox/dump/dumperbase.hxx:1392
@@ -230,8 +136,6 @@ include/oox/dump/oledumper.hxx:326
     unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int)
 include/oox/dump/oledumper.hxx:327
     char16_t oox::dump::AxPropertyObjectBase::dumpUnicodeProperty()
-include/oox/export/shapes.hxx:158
-    class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualProperties(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &)
 include/oox/export/shapes.hxx:203
     class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &)
 include/oox/export/shapes.hxx:204
@@ -240,19 +144,17 @@ include/oox/helper/binaryoutputstream.hxx:78
     class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short)
 include/oox/helper/binaryoutputstream.hxx:79
     class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short)
-include/oox/helper/containerhelper.hxx:113
-    typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
-include/sax/fshelper.hxx:205
-    class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
 include/sax/fshelper.hxx:206
+    class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
+include/sax/fshelper.hxx:207
     class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long)
-include/sax/fshelper.hxx:209
+include/sax/fshelper.hxx:210
     class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *)
 include/svl/macitem.hxx:92
     class SvStream & SvxMacroTableDtor::Write(class SvStream &) const
-include/svl/poolitem.hxx:171
+include/svl/poolitem.hxx:173
     class SvStream & SfxPoolItem::Store(class SvStream &,unsigned short) const
-include/svx/framelink.hxx:157
+include/svx/framelink.hxx:204
     class svx::frame::Style & svx::frame::Style::MirrorSelf()
 include/test/sheet/xnamedrange.hxx:22
     class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRange::init()
@@ -264,36 +166,26 @@ include/test/sheet/xstyleloader.hxx:27
     class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> apitest::XStyleLoader::getTargetComponent()
 include/test/sheet/xusedareacursor.hxx:25
     class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XUsedAreaCursor::init()
-include/tools/bigint.hxx:114
-    unsigned short BigInt::operator unsigned short() const
-include/tools/bigint.hxx:115
-    unsigned long BigInt::operator unsigned long() const
-include/tools/color.hxx:141
+include/tools/color.hxx:140
     class SvStream & Color::Read(class SvStream &)
-include/tools/color.hxx:142
+include/tools/color.hxx:141
     class SvStream & Color::Write(class SvStream &) const
 include/vcl/fontcharmap.hxx:48
     class tools::SvRef<class FontCharMap> FontCharMap::GetDefaultMap(_Bool)
 include/vcl/gdimtf.hxx:185
     class SvStream & GDIMetaFile::Read(class SvStream &)
-include/vcl/graphicfilter.hxx:258
+include/vcl/graphicfilter.hxx:254
     class ErrCode GraphicFilter::ExportGraphic(const class Graphic &,const class INetURLObject &,unsigned short,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
-include/vcl/menu.hxx:460
-    unsigned short MenuBar::AddMenuBarButton(const class Image &,const class Link<struct MenuBar::MenuBarButtonCallbackArg &, _Bool> &,const class rtl::OUString &)
-lotuswordpro/source/filter/lwpsvstream.hxx:76
+lotuswordpro/inc/lwpsvstream.hxx:75
     class LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &)
-lotuswordpro/source/filter/lwpsvstream.hxx:77
+lotuswordpro/inc/lwpsvstream.hxx:76
     class LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &)
-lotuswordpro/source/filter/lwpsvstream.hxx:78
+lotuswordpro/inc/lwpsvstream.hxx:77
     class LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &)
-sc/source/core/opencl/formulagroupcl.cxx:968
+sc/source/core/opencl/formulagroupcl.cxx:966
     unsigned long sc::opencl::DynamicKernelSlidingArgument::GenReductionLoopHeader(class std::basic_stringstream<char> &,_Bool &)
-sc/source/core/opencl/formulagroupcl.cxx:1413
+sc/source/core/opencl/formulagroupcl.cxx:1408
     unsigned long sc::opencl::ParallelReductionVectorRef::GenReductionLoopHeader(class std::basic_stringstream<char> &,int,_Bool &)
-sc/source/core/tool/scmatrix.cxx:2217
-    type-parameter-?-? * wrapped_iterator::operator->() const
-sc/source/core/tool/scmatrix.cxx:3183
-    const class svl::SharedString & matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const
 sc/source/ui/vba/vbaformat.hxx:69
     class com::sun::star::uno::Any ScVbaFormat::getAddIndent()
 sc/source/ui/vba/vbaformat.hxx:73
@@ -326,23 +218,17 @@ sc/source/ui/vba/vbaformat.hxx:145
     class com::sun::star::uno::Any ScVbaFormat::getMergeCells()
 sc/source/ui/vba/vbaformat.hxx:151
     class com::sun::star::uno::Any ScVbaFormat::getReadingOrder()
-sd/source/filter/eppt/pptx-epptooxml.cxx:131
+sd/source/filter/eppt/pptx-epptooxml.cxx:136
     class oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,enum PageType,_Bool)
 sd/source/ui/inc/OutlineViewShell.hxx:114
     class ErrCode sd::OutlineViewShell::ReadRtf(class SvStream &)
 sd/source/ui/remotecontrol/IBluetoothSocket.hxx:37
     int sd::IBluetoothSocket::write(const void *,unsigned int)
-sfx2/source/inc/childwinimpl.hxx:75
-    class SfxFrame * SfxFrameArr_Impl::operator[](unsigned long)
 sw/inc/calc.hxx:112
     class SwSbxValue & SwSbxValue::MakeDouble()
-sw/inc/editsh.hxx:617
+sw/inc/editsh.hxx:646
     const class GraphicAttr * SwEditShell::GetGraphicAttr(class GraphicAttr &) const
 sw/source/uibase/inc/fldmgr.hxx:113
     const class com::sun::star::uno::Reference<class com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const
-vcl/inc/PhysicalFontFace.hxx:79
-    int PhysicalFontFace::GetWidth() const
-vcl/inc/unx/gtk/gtkdata.hxx:153
+vcl/inc/unx/gtk/gtkdata.hxx:164
     int GtkSalDisplay::CaptureMouse(class SalFrame *)
-vcl/source/filter/FilterConfigCache.hxx:89
-    class rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short)
diff --git a/connectivity/source/drivers/evoab2/NResultSet.hxx b/connectivity/source/drivers/evoab2/NResultSet.hxx
index 80e2968ab0b8..4dc2d6d422ed 100644
--- a/connectivity/source/drivers/evoab2/NResultSet.hxx
+++ b/connectivity/source/drivers/evoab2/NResultSet.hxx
@@ -118,11 +118,6 @@ namespace connectivity
             OEvoabResultSet( OCommonStatement *pStmt, OEvoabConnection *pConnection );
             void construct( const QueryData& _rData );
 
-            css::uno::Reference< css::uno::XInterface > operator *()
-            {
-                return css::uno::Reference< css::uno::XInterface >(*static_cast<OResultSet_BASE*>(this));
-            }
-
             // ::cppu::OComponentHelper
             virtual void SAL_CALL disposing() override;
             // XInterface
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index be2f26044a59..83e3be792433 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -2155,45 +2155,6 @@ ToolbarSaveInData::~ToolbarSaveInData()
 {
 }
 
-void ToolbarSaveInData::SetSystemStyle(
-    const OUString& rResourceURL,
-    sal_Int32 nStyle )
-{
-    if ( rResourceURL.startsWith( "private" ) &&
-         m_xPersistentWindowState.is() &&
-         m_xPersistentWindowState->hasByName( rResourceURL ) )
-    {
-        try
-        {
-            uno::Sequence< beans::PropertyValue > aProps;
-
-            uno::Any a( m_xPersistentWindowState->getByName( rResourceURL ) );
-
-            if ( a >>= aProps )
-            {
-                for ( sal_Int32 i = 0; i < aProps.getLength(); ++i )
-                {
-                    if ( aProps[ i ].Name == ITEM_DESCRIPTOR_STYLE )
-                    {
-                        aProps[ i ].Value <<= nStyle;
-                        break;
-                    }
-                }
-            }
-
-            uno::Reference< container::XNameReplace >
-                xNameReplace( m_xPersistentWindowState, uno::UNO_QUERY );
-
-            xNameReplace->replaceByName( rResourceURL, uno::Any( aProps ) );
-        }
-        catch ( uno::Exception& )
-        {
-            // do nothing, a default value is returned
-            SAL_WARN("cui.customize", "Exception setting toolbar style");
-        }
-    }
-}
-
 sal_Int32 ToolbarSaveInData::GetSystemStyle( const OUString& rResourceURL )
 {
     sal_Int32 result = 0;
diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx
index 9d20c8ddd6a1..445b860a7f74 100644
--- a/cui/source/inc/cfg.hxx
+++ b/cui/source/inc/cfg.hxx
@@ -558,8 +558,6 @@ public:
 
     sal_Int32       GetSystemStyle( const OUString& rResourceURL );
 
-    void            SetSystemStyle( const OUString& rResourceURL, sal_Int32 nStyle );
-
     SvxEntries*     GetEntries() override;
     void            SetEntries( SvxEntries* ) override;
     bool            HasSettings() override;
diff --git a/desktop/source/migration/services/oo3extensionmigration.cxx b/desktop/source/migration/services/oo3extensionmigration.cxx
index 98281a3ecc4e..b8672ee44c7d 100644
--- a/desktop/source/migration/services/oo3extensionmigration.cxx
+++ b/desktop/source/migration/services/oo3extensionmigration.cxx
@@ -80,18 +80,6 @@ OO3ExtensionMigration::~OO3ExtensionMigration()
 {
 }
 
-void OO3ExtensionMigration::checkAndCreateDirectory( INetURLObject const & rDirURL )
-{
-    ::osl::FileBase::RC aResult = ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DecodeMechanism::ToIUri ) );
-    if ( aResult == ::osl::FileBase::E_NOENT )
-    {
-        INetURLObject aBaseURL( rDirURL );
-        aBaseURL.removeSegment();
-        checkAndCreateDirectory( aBaseURL );
-        ::osl::Directory::create( rDirURL.GetMainURL( INetURLObject::DecodeMechanism::ToIUri ) );
-    }
-}
-
 void OO3ExtensionMigration::scanUserExtensions( const OUString& sSourceDir, TStringVector& aMigrateExtensions )
 {
     osl::Directory    aScanRootDir( sSourceDir );
diff --git a/desktop/source/migration/services/oo3extensionmigration.hxx b/desktop/source/migration/services/oo3extensionmigration.hxx
index 690bb94093e3..c237f54020d3 100644
--- a/desktop/source/migration/services/oo3extensionmigration.hxx
+++ b/desktop/source/migration/services/oo3extensionmigration.hxx
@@ -78,7 +78,6 @@ namespace migration
             SCANRESULT_DONTMIGRATE_EXTENSION
         };
 
-        void                    checkAndCreateDirectory( INetURLObject const & rDirURL );
         ScanResult              scanExtensionFolder( const OUString& sExtFolder );
         void                    scanUserExtensions( const OUString& sSourceDir, TStringVector& aMigrateExtensions );
         bool                    scanDescriptionXml( const OUString& sDescriptionXmlFilePath );
diff --git a/editeng/source/rtf/svxrtf.cxx b/editeng/source/rtf/svxrtf.cxx
index b62940dfc8b3..1ba1562e8a49 100644
--- a/editeng/source/rtf/svxrtf.cxx
+++ b/editeng/source/rtf/svxrtf.cxx
@@ -994,34 +994,6 @@ void SvxRTFItemStackType::SetStartPos( const EditPosition& rPos )
     nSttCnt = rPos.GetCntIdx();
 }
 
-void SvxRTFItemStackType::MoveFullNode(const EditNodeIdx &rOldNode,
-    const EditNodeIdx &rNewNode)
-{
-    bool bSameEndAsStart = (pSttNd == pEndNd);
-
-    if (pSttNd->GetIdx() == rOldNode.GetIdx())
-    {
-        delete pSttNd;
-        pSttNd = rNewNode.Clone();
-        if (bSameEndAsStart)
-            pEndNd = pSttNd;
-    }
-
-    if (!bSameEndAsStart && pEndNd->GetIdx() == rOldNode.GetIdx())
-    {
-        delete pEndNd;
-        pEndNd = rNewNode.Clone();
-    }
-
-    //And the same for all the children
-    sal_Int32 nCount = m_pChildList ? m_pChildList->size() : 0;
-    for (sal_Int32 i = 0; i < nCount; ++i)
-    {
-        auto const& pStk = (*m_pChildList)[i];
-        pStk->MoveFullNode(rOldNode, rNewNode);
-    }
-}
-
 void SvxRTFItemStackType::Compress( const SvxRTFParser& rParser )
 {
     ENSURE_OR_RETURN_VOID(m_pChildList, "Compress: no ChildList" );
diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx
index 25b87d8c03a3..8e9d786a8d3a 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -64,14 +64,6 @@ void LocaleNode::print () const {
     printf (">\n");
 }
 
-void LocaleNode::printR () const {
-    print();
-    for (size_t i=0;i<children.size();i++)
-        children[i]->printR();
-    printf ("\t");
-    print();
-}
-
 void LocaleNode::addChild ( LocaleNode * node) {
     children.emplace_back(node);
     node->parent = this;
diff --git a/i18npool/source/localedata/LocaleNode.hxx b/i18npool/source/localedata/LocaleNode.hxx
index 0f089d162bf3..bb059a197654 100644
--- a/i18npool/source/localedata/LocaleNode.hxx
+++ b/i18npool/source/localedata/LocaleNode.hxx
@@ -101,7 +101,6 @@ public:
     LocaleNode * getChildAt (sal_Int32 idx) const { return children[idx].get(); };
     const LocaleNode * findNode ( const sal_Char *name) const;
     void print () const;
-    void printR () const;
     virtual ~LocaleNode();
     void addChild (  LocaleNode * node);
     const LocaleNode* getRoot() const;
diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx
index 02dcbb562ebc..76b7bea7df8e 100644
--- a/include/editeng/svxrtf.hxx
+++ b/include/editeng/svxrtf.hxx
@@ -336,9 +336,6 @@ public:
     //bad, consider this deprecated.
     void SetStartPos( const EditPosition& rPos );
 
-    void MoveFullNode(const EditNodeIdx &rOldNode,
-        const EditNodeIdx &rNewNode);
-
     const EditNodeIdx& GetSttNode() const { return *pSttNd; }
     const EditNodeIdx& GetEndNode() const { return *pEndNd; }
 
diff --git a/include/sfx2/objface.hxx b/include/sfx2/objface.hxx
index becbab341eee..cb0797b5ce6b 100644
--- a/include/sfx2/objface.hxx
+++ b/include/sfx2/objface.hxx
@@ -78,7 +78,6 @@ public:
     inline sal_uInt16           Count() const;
 
     const SfxSlot*          GetRealSlot( const SfxSlot * ) const;
-    const SfxSlot*          GetRealSlot( sal_uInt16 nSlotId ) const;
     const SfxSlot*  GetSlot( sal_uInt16 nSlotId ) const;
     const SfxSlot*          GetSlot( const OUString& rCommand ) const;
 
diff --git a/include/svx/obj3d.hxx b/include/svx/obj3d.hxx
index 008482a1dba6..36da39e1e2a4 100644
--- a/include/svx/obj3d.hxx
+++ b/include/svx/obj3d.hxx
@@ -123,9 +123,6 @@ private:
     bool            mbTfHasChanged          : 1;
     bool            mbIsSelected            : 1;
 
- public:
-    void SetBoundVolInvalid();
-
  protected:
     void SetTransformChanged();
     virtual void NewObjectInserted(const E3dObject* p3DObj);
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index 060274eaa683..0952a9335ac3 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -140,9 +140,6 @@ public:
     /// linked page or linked group object
     virtual bool IsReadOnly() const;
 
-    /// count all objects including objects in Groups
-    size_t CountAllObjects() const;
-
     /** Makes the object list flat, i.e. the object list content are
         then tree leaves
 
diff --git a/include/tools/globname.hxx b/include/tools/globname.hxx
index b8d73d730ec1..1a9a19e42fca 100644
--- a/include/tools/globname.hxx
+++ b/include/tools/globname.hxx
@@ -84,7 +84,6 @@ public:
     TOOLS_DLLPUBLIC friend SvStream & WriteSvGlobalName( SvStream &, const SvGlobalName & );
 
     bool          operator < ( const SvGlobalName & rObj ) const;
-    SvGlobalName& operator += ( sal_uInt32 );
 
     bool          operator == ( const SvGlobalName & rObj ) const;
     bool          operator != ( const SvGlobalName & rObj ) const
diff --git a/include/vcl/gdimtf.hxx b/include/vcl/gdimtf.hxx
index 383c7b3de445..e9384607c218 100644
--- a/include/vcl/gdimtf.hxx
+++ b/include/vcl/gdimtf.hxx
@@ -157,7 +157,6 @@ public:
 
     void            AddAction( MetaAction* pAction );
     void            AddAction( MetaAction* pAction, size_t nPos );
-    void            RemoveAction( size_t nPos );
     void            push_back( MetaAction* pAction );
     /**
      * @param pAction takes ownership
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx
index d8d61f72bdbd..df51890da053 100644
--- a/include/vcl/menu.hxx
+++ b/include/vcl/menu.hxx
@@ -294,7 +294,6 @@ public:
     virtual bool IsMenuBar() const = 0;
 
     void RemoveDisabledEntries( bool bCheckPopups = true, bool bRemoveEmptyPopups = false );
-    bool HasValidEntries();
 
     void UpdateNativeMenu();
 
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index bc51c1f8de3d..42cbfcc79df9 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -825,7 +825,6 @@ public:
 
     void                                IncrementLockCount();
     void                                DecrementLockCount();
-    bool                                IsLocked() const;
 
                                         // returns the input language used for the last key stroke
                                         // may be LANGUAGE_DONTKNOW if not supported by the OS
@@ -928,8 +927,6 @@ public:
 
     void                                SetWindowRegionPixel();
     void                                SetWindowRegionPixel( const vcl::Region& rRegion );
-    const vcl::Region&                  GetWindowRegionPixel() const;
-    bool                                IsWindowRegionPixel() const;
     vcl::Region                         GetWindowClipRegionPixel() const;
     vcl::Region                         GetPaintRegion() const;
     bool                                IsInPaint() const;
diff --git a/lotuswordpro/source/filter/lwpdoc.cxx b/lotuswordpro/source/filter/lwpdoc.cxx
index e4755571e10d..90fd7374869c 100644
--- a/lotuswordpro/source/filter/lwpdoc.cxx
+++ b/lotuswordpro/source/filter/lwpdoc.cxx
@@ -701,23 +701,6 @@ sal_uInt16 LwpDocument::GetNumberOfPagesBefore()
 }
 
  /**
- * @descr    Get Max number of pages
- */
- void  LwpDocument::MaxNumberOfPages(sal_uInt16& nNumPages)
-{
-    LwpDocument* pDivision = GetFirstDivision();
-
-    LwpDivInfo* pDivInfo = dynamic_cast<LwpDivInfo*>(m_DivInfo.obj().get());
-    if(pDivInfo)
-        nNumPages += pDivInfo->GetMaxNumberOfPages();
-    while(pDivision)
-    {
-        pDivision->MaxNumberOfPages(nNumPages);
-        pDivision = pDivision->GetNextDivision();
-    }
-}
-
- /**
  * @descr    Parse the frame which anchor is to page before parse other contents,
  *           This method is called when the document is root document.
  */
diff --git a/lotuswordpro/source/filter/lwpdoc.hxx b/lotuswordpro/source/filter/lwpdoc.hxx
index a0d12105a645..03b7c143afc6 100644
--- a/lotuswordpro/source/filter/lwpdoc.hxx
+++ b/lotuswordpro/source/filter/lwpdoc.hxx
@@ -175,7 +175,6 @@ public:
     void ParseFrameInPage(IXFStream* pOutputStream);
 
 private:
-    void MaxNumberOfPages(sal_uInt16& nNumPages);
     LwpDocument* ImplGetFirstDivisionWithContentsThatIsNotOLE();
     void XFConvertFrameInPage(XFContentContainer* pCont);
     static void ChangeStyleName();
diff --git a/lotuswordpro/source/filter/lwplayout.cxx b/lotuswordpro/source/filter/lwplayout.cxx
index 34ae225a3920..cdaa7ab7dfa3 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -945,38 +945,6 @@ sal_uInt16 LwpMiddleLayout::GetScaleCenter()
         return 0;
 }
 
-sal_uInt32 LwpMiddleLayout::GetScalePercentage()
-{
-    if ((m_nOverrideFlag & OVER_SCALING) && m_LayScale.obj().is() && GetLayoutScale())
-        return GetLayoutScale()->GetScalePercentage()/10;//m_nScalePercentage 1000 = 100%
-    rtl::Reference<LwpObject> xBase(GetBasedOnStyle());
-    if (xBase.is())
-        return dynamic_cast<LwpMiddleLayout&>(*xBase.get()).GetScalePercentage();
-    else
-        return 100;
-}
-
-double LwpMiddleLayout::GetScaleWidth()
-{
-    if ((m_nOverrideFlag & OVER_SCALING) && m_LayScale.obj().is() && GetLayoutScale())
-        return LwpTools::ConvertFromUnits(GetLayoutScale()->GetScaleWidth());
-    rtl::Reference<LwpObject> xBase(GetBasedOnStyle());
-    if (xBase.is())
-        return dynamic_cast<LwpMiddleLayout&>(*xBase.get()).GetScaleWidth();
-    else
-        return 0;
-}
-
-double LwpMiddleLayout::GetScaleHeight()
-{
-    if ((m_nOverrideFlag & OVER_SCALING) && m_LayScale.obj().is() && GetLayoutScale())
-        return LwpTools::ConvertFromUnits(GetLayoutScale()->GetScaleHeight());
-    rtl::Reference<LwpObject> xBase(GetBasedOnStyle());
-    if (xBase.is())
-        return dynamic_cast<LwpMiddleLayout&>(*xBase.get()).GetScaleHeight();
-    else
-        return 0;
-}
 bool LwpMiddleLayout::CanSizeRight()
 {
     sal_uInt8 RelType = GetRelativeType();
diff --git a/lotuswordpro/source/filter/lwplayout.hxx b/lotuswordpro/source/filter/lwplayout.hxx
index e6b5fe849e5d..efff5f62fd07 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -364,9 +364,6 @@ public:
         sal_uInt16 GetScaleMode();
     sal_uInt16 GetScaleTile();
     sal_uInt16 GetScaleCenter();
-    sal_uInt32 GetScalePercentage();
-    double GetScaleWidth();
-    double GetScaleHeight();
 
     bool CanSizeRight();
     virtual double GetWidth() override;
diff --git a/lotuswordpro/source/filter/lwppara.hxx b/lotuswordpro/source/filter/lwppara.hxx
index 282afeb16591..da927326c24e 100644
--- a/lotuswordpro/source/filter/lwppara.hxx
+++ b/lotuswordpro/source/filter/lwppara.hxx
@@ -180,7 +180,6 @@ public:
     XFContentContainer* GetXFContainer();
     void AddXFContent(XFContent* pCont);
     void SetXFContainer(XFContentContainer* pCont);
-    void FindLayouts();// for register pagelayout
     void RegisterTabStyle(XFParaStyle* pXFParaStyle);
 
     LwpBulletStyleMgr* GetBulletStyleMgr();
diff --git a/lotuswordpro/source/filter/lwppara1.cxx b/lotuswordpro/source/filter/lwppara1.cxx
index 7a6b97f2b214..fc5c46a3e979 100644
--- a/lotuswordpro/source/filter/lwppara1.cxx
+++ b/lotuswordpro/source/filter/lwppara1.cxx
@@ -547,17 +547,6 @@ void LwpPara::OverrideParaNumbering(LwpParaProperty const * pProps)
     m_pParaNumbering = std::move(pOver);
 }
 
-void LwpPara::FindLayouts()
-{
-    m_Fribs.SetPara(this);
-    m_Fribs.FindLayouts();
-    LwpPara* pNextPara = dynamic_cast<LwpPara*>(GetNext().obj().get());
-    if(pNextPara)
-    {
-        pNextPara->FindLayouts();
-    }
-}
-
 /**************************************************************************
  * @descr:  Get property according to the property type
 **************************************************************************/
diff --git a/reportdesign/inc/UndoEnv.hxx b/reportdesign/inc/UndoEnv.hxx
index 3741800d2617..b0f3b863534a 100644
--- a/reportdesign/inc/UndoEnv.hxx
+++ b/reportdesign/inc/UndoEnv.hxx
@@ -127,8 +127,6 @@ namespace rptui
         virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
 
     private:
-        void TogglePropertyListening(const css::uno::Reference< css::uno::XInterface>& Element);
-
         void    implSetModified();
 
         void    switchListening( const css::uno::Reference< css::container::XIndexAccess >& _rxContainer, bool _bStartListening );
diff --git a/reportdesign/source/core/sdr/UndoEnv.cxx b/reportdesign/source/core/sdr/UndoEnv.cxx
index 8511c6e65167..430a8bd57b50 100644
--- a/reportdesign/source/core/sdr/UndoEnv.cxx
+++ b/reportdesign/source/core/sdr/UndoEnv.cxx
@@ -508,32 +508,6 @@ void OXUndoEnvironment::RemoveSection(const Reference< report::XSection > & _xSe
 }
 
 
-void OXUndoEnvironment::TogglePropertyListening(const Reference< XInterface > & Element)
-{
-    // am Container horchen
-    Reference< XIndexAccess >  xContainer(Element, UNO_QUERY);
-    if (xContainer.is())
-    {
-        Reference< XInterface > xInterface;
-        sal_Int32 nCount = xContainer->getCount();
-        for(sal_Int32 i = 0;i != nCount;++i)
-        {
-            xInterface.set(xContainer->getByIndex( i ),uno::UNO_QUERY);
-            TogglePropertyListening(xInterface);
-        }
-    }
-
-    Reference< XPropertySet >  xSet(Element, UNO_QUERY);
-    if (xSet.is())
-    {
-        if (!m_pImpl->m_bReadOnly)
-            xSet->addPropertyChangeListener( OUString(), this );
-        else
-            xSet->removePropertyChangeListener( OUString(), this );
-    }
-}
-
-
 void OXUndoEnvironment::switchListening( const Reference< XIndexAccess >& _rxContainer, bool _bStartListening )
 {
     OSL_PRECOND( _rxContainer.is(), "OXUndoEnvironment::switchListening: invalid container!" );
diff --git a/reportdesign/source/ui/inc/ReportControllerObserver.hxx b/reportdesign/source/ui/inc/ReportControllerObserver.hxx
index 287d478afcbb..7cbde89539d4 100644
--- a/reportdesign/source/ui/inc/ReportControllerObserver.hxx
+++ b/reportdesign/source/ui/inc/ReportControllerObserver.hxx
@@ -97,15 +97,10 @@ namespace rptui
         void Clear();
     private:
 
-        void TogglePropertyListening(const css::uno::Reference< css::uno::XInterface>& Element);
         void switchListening( const css::uno::Reference< css::container::XIndexAccess >& _rxContainer, bool _bStartListening );
         void switchListening( const css::uno::Reference< css::uno::XInterface >& _rxObject, bool _bStartListening );
 
         DECL_LINK(SettingsChanged, VclSimpleEvent&, void );
-    private:
-
-        ::std::vector< css::uno::Reference< css::container::XChild> >::const_iterator getSection(const css::uno::Reference< css::container::XChild>& _xContainer) const;
-
     };
 
 } // namespace rptui
diff --git a/reportdesign/source/ui/report/ReportControllerObserver.cxx b/reportdesign/source/ui/report/ReportControllerObserver.cxx
index 6ceacbe92010..df1aed082188 100644
--- a/reportdesign/source/ui/report/ReportControllerObserver.cxx
+++ b/reportdesign/source/ui/report/ReportControllerObserver.cxx
@@ -204,29 +204,6 @@ void OXReportControllerObserver::RemoveSection(const uno::Reference< report::XSe
 }
 
 
-void OXReportControllerObserver::TogglePropertyListening(const uno::Reference< uno::XInterface > & Element)
-{
-    // listen at Container
-    uno::Reference< container::XIndexAccess >  xContainer(Element, uno::UNO_QUERY);
-    if (xContainer.is())
-    {
-        uno::Reference< uno::XInterface > xInterface;
-        sal_Int32 nCount = xContainer->getCount();
-        for(sal_Int32 i = 0;i != nCount;++i)
-        {
-            xInterface.set(xContainer->getByIndex( i ),uno::UNO_QUERY);
-            TogglePropertyListening(xInterface);
-        }
-    }
-
-    uno::Reference< beans::XPropertySet >  xSet(Element, uno::UNO_QUERY);
-    if (xSet.is())
-    {
-        xSet->addPropertyChangeListener( OUString(), this );
-    }
-}
-
-
 void OXReportControllerObserver::switchListening( const uno::Reference< container::XIndexAccess >& _rxContainer, bool _bStartListening )
 {
     OSL_PRECOND( _rxContainer.is(), "OXReportControllerObserver::switchListening: invalid container!" );
@@ -324,21 +301,6 @@ void OXReportControllerObserver::RemoveElement(const uno::Reference< uno::XInter
 }
 
 
-::std::vector< uno::Reference< container::XChild> >::const_iterator OXReportControllerObserver::getSection(const uno::Reference<container::XChild>& _xContainer) const
-{
-    ::std::vector< uno::Reference< container::XChild> >::const_iterator aFind = m_pImpl->m_aSections.end();
-    if ( _xContainer.is() )
-    {
-        aFind = ::std::find(m_pImpl->m_aSections.begin(),m_pImpl->m_aSections.end(),_xContainer);
-
-        if ( aFind == m_pImpl->m_aSections.end() )
-        {
-            uno::Reference<container::XChild> xParent(_xContainer->getParent(),uno::UNO_QUERY);
-            aFind = getSection(xParent);
-        }
-    }
-    return aFind;
-}
 // XContainerListener
 
 void SAL_CALL OXReportControllerObserver::elementInserted(const container::ContainerEvent& evt)
diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx
index ea9ee09b2291..ccec669d1db2 100644
--- a/sc/inc/attrib.hxx
+++ b/sc/inc/attrib.hxx
@@ -153,43 +153,6 @@ public:
             }
 };
 
-// ScRangeItem: manages an area of a table
-class ScRangeItem : public SfxPoolItem
-{
-public:
-            inline  ScRangeItem( const sal_uInt16 nWhich );
-            inline  ScRangeItem( const ScRangeItem& rCpy );
-
-    inline ScRangeItem& operator=( const ScRangeItem &rCpy );
-
-    // "pure virtual methods" from SfxPoolItem
-    virtual bool                operator==( const SfxPoolItem& ) const override;
-    virtual bool GetPresentation( SfxItemPresentation ePres,
-                                  MapUnit eCoreMetric,
-                                  MapUnit ePresMetric,
-                                  OUString &rText,
-                                  const IntlWrapper& rIntl ) const override;
-    virtual SfxPoolItem*        Clone( SfxItemPool *pPool = nullptr ) const override;
-
-private:
-    ScRange aRange;
-};
-
-inline ScRangeItem::ScRangeItem( const sal_uInt16 nWhichP )
-    :   SfxPoolItem( nWhichP )
-{
-}
-
-inline ScRangeItem::ScRangeItem( const ScRangeItem& rCpy )
-    : SfxPoolItem( rCpy.Which() ), aRange( rCpy.aRange )
-{}
-
-inline ScRangeItem& ScRangeItem::operator=( const ScRangeItem &rCpy )
-{
-    aRange = rCpy.aRange;
-    return *this;
-}
-
 // page format item: contents of header and footer
 
 #define SC_HF_LEFTAREA   1
diff --git a/sc/inc/chartarr.hxx b/sc/inc/chartarr.hxx
index 87b67d5f465b..3580b31f008b 100644

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list