summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-28 10:10:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-29 07:28:57 +0100
commita566fd1c1a50f9bcb4c69a19bdf4fb1955285d93 (patch)
tree13273efcf8aa69ce39a1860dc3d111c071e6a7b3
parent411260d836e7bf6c693b9b7d16af1b36184133af (diff)
loplugin:unusedmethods
Change-Id: I2efb5c0e5735c179314c6c5de87821cee3b033e1 Reviewed-on: https://gerrit.libreoffice.org/45386 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--basic/source/comp/exprnode.cxx12
-rw-r--r--basic/source/inc/expr.hxx1
-rw-r--r--compilerplugins/clang/unusedmethods.results634
-rw-r--r--compilerplugins/clang/unusedmethods.unused-returns.results174
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.hxx5
-rw-r--r--cui/source/customize/cfg.cxx39
-rw-r--r--cui/source/inc/cfg.hxx2
-rw-r--r--desktop/source/migration/services/oo3extensionmigration.cxx12
-rw-r--r--desktop/source/migration/services/oo3extensionmigration.hxx1
-rw-r--r--editeng/source/rtf/svxrtf.cxx28
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx8
-rw-r--r--i18npool/source/localedata/LocaleNode.hxx1
-rw-r--r--include/editeng/svxrtf.hxx3
-rw-r--r--include/sfx2/objface.hxx1
-rw-r--r--include/svx/obj3d.hxx3
-rw-r--r--include/svx/svdpage.hxx3
-rw-r--r--include/tools/globname.hxx1
-rw-r--r--include/vcl/gdimtf.hxx1
-rw-r--r--include/vcl/menu.hxx1
-rw-r--r--include/vcl/window.hxx3
-rw-r--r--lotuswordpro/source/filter/lwpdoc.cxx17
-rw-r--r--lotuswordpro/source/filter/lwpdoc.hxx1
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx32
-rw-r--r--lotuswordpro/source/filter/lwplayout.hxx3
-rw-r--r--lotuswordpro/source/filter/lwppara.hxx1
-rw-r--r--lotuswordpro/source/filter/lwppara1.cxx11
-rw-r--r--reportdesign/inc/UndoEnv.hxx2
-rw-r--r--reportdesign/source/core/sdr/UndoEnv.cxx26
-rw-r--r--reportdesign/source/ui/inc/ReportControllerObserver.hxx5
-rw-r--r--reportdesign/source/ui/report/ReportControllerObserver.cxx38
-rw-r--r--sc/inc/attrib.hxx37
-rw-r--r--sc/inc/chartarr.hxx17
-rw-r--r--sc/inc/document.hxx2
-rw-r--r--sc/inc/olinetab.hxx1
-rw-r--r--sc/source/core/data/attrib.cxx48
-rw-r--r--sc/source/core/data/documen2.cxx2
-rw-r--r--sc/source/core/data/olinetab.cxx54
-rw-r--r--sc/source/core/tool/chartarr.cxx38
-rw-r--r--sc/source/ui/cctrl/checklistmenu.cxx13
-rw-r--r--sc/source/ui/inc/checklistmenu.hxx1
-rw-r--r--sfx2/source/appl/workwin.cxx22
-rw-r--r--sfx2/source/control/objface.cxx18
-rw-r--r--sfx2/source/inc/splitwin.hxx1
-rw-r--r--sfx2/source/inc/workwin.hxx1
-rw-r--r--sot/source/sdstor/stgdir.cxx21
-rw-r--r--sot/source/sdstor/stgdir.hxx1
-rw-r--r--svx/source/engine3d/obj3d.cxx17
-rw-r--r--svx/source/form/navigatortreemodel.cxx42
-rw-r--r--svx/source/inc/fmexpl.hxx2
-rw-r--r--svx/source/svdraw/svdpage.cxx13
-rw-r--r--sw/inc/SwNumberTree.hxx7
-rw-r--r--sw/inc/pagedesc.hxx2
-rw-r--r--sw/inc/view.hxx1
-rw-r--r--sw/source/core/SwNumberTree/SwNumberTree.cxx26
-rw-r--r--sw/source/core/access/acctable.cxx91
-rw-r--r--sw/source/uibase/uiview/viewdraw.cxx22
-rw-r--r--tools/source/ref/globname.cxx13
-rw-r--r--vbahelper/source/msforms/vbacontrols.cxx13
-rw-r--r--vcl/source/gdi/gdimtf.cxx15
-rw-r--r--vcl/source/window/menu.cxx18
-rw-r--r--vcl/source/window/paint.cxx18
-rw-r--r--vcl/source/window/window.cxx16
62 files changed, 598 insertions, 1064 deletions
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
--- a/sc/inc/chartarr.hxx
+++ b/sc/inc/chartarr.hxx
@@ -77,27 +77,10 @@ public:
void SetHeaders(bool bCol, bool bRow) { aPositioner.SetHeaders(bCol, bRow); }
bool HasColHeaders() const { return aPositioner.HasColHeaders(); }
bool HasRowHeaders() const { return aPositioner.HasRowHeaders(); }
- const OUString& GetName() const { return aName; }
ScMemChart* CreateMemChart();
};
-class ScChartCollection
-{
- typedef ::std::vector<std::unique_ptr<ScChartArray>> DataType;
- DataType m_Data;
-
-public:
- ScChartCollection();
- ScChartCollection(const ScChartCollection& rColl);
-
- void clear();
- size_t size() const;
- bool empty() const;
- ScChartArray* operator[](size_t nIndex);
- const ScChartArray* operator[](size_t nIndex) const;
-};
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 321f4ebbc8e3..3096dc7aa5df 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -125,7 +125,6 @@ struct ScAttrEntry;
class ScAutoFormatData;
class ScBroadcastAreaSlotMachine;
class ScChangeViewSettings;
-class ScChartCollection;
class ScChartListenerCollection;
class ScClipOptions;
class ScConditionalFormat;
@@ -364,7 +363,6 @@ private:
mutable ScRangeName* pRangeName;
ScDBCollection* pDBCollection;
ScDPCollection* pDPCollection;
- ScChartCollection* pChartCollection;
std::unique_ptr< ScTemporaryChartLock > apTemporaryChartLock;
ScPatternAttr* pSelectionAttr; // Attributes of a block
ScFormulaCell* pFormulaTree; // formula tree (start)
diff --git a/sc/inc/olinetab.hxx b/sc/inc/olinetab.hxx
index 7fc76e99838f..a25064d86c4e 100644
--- a/sc/inc/olinetab.hxx
+++ b/sc/inc/olinetab.hxx
@@ -98,7 +98,6 @@ private:
SCCOLROW nSearchPos, size_t& rFindLevel, size_t& rFindIndex,
size_t nMaxLevel = SC_OL_MAXDEPTH);
- void RemoveSub(SCCOLROW nStartPos, SCCOLROW nEndPos, size_t nLevel);
void PromoteSub(SCCOLROW nStartPos, SCCOLROW nEndPos, size_t nStartLevel);
public:
diff --git a/sc/source/core/data/attrib.cxx b/sc/source/core/data/attrib.cxx
index 5d0440ea7955..cc614b28dbb6 100644
--- a/sc/source/core/data/attrib.cxx
+++ b/sc/source/core/data/attrib.cxx
@@ -373,54 +373,6 @@ void ScProtectionAttr::SetHidePrint( bool bHPrint)
}
/**
- * ScRangeItem - Table range
- */
-bool ScRangeItem::operator==( const SfxPoolItem& rAttr ) const
-{
- assert(SfxPoolItem::operator==(rAttr));
-
- return aRange == static_cast<const ScRangeItem&>(rAttr).aRange;
-}
-
-SfxPoolItem* ScRangeItem::Clone( SfxItemPool* ) const
-{
- return new ScRangeItem( *this );
-}
-
-bool ScRangeItem::GetPresentation
- (
- SfxItemPresentation ePres,
- MapUnit /* eCoreUnit */,
- MapUnit /* ePresUnit */,
- OUString& rText,
- const IntlWrapper& /* rIntl */
- ) const
-{
- rText.clear();
-
- switch ( ePres )
- {
- case SfxItemPresentation::Complete:
- rText = ScGlobal::GetRscString(STR_AREA) + ": ";
- SAL_FALLTHROUGH;
-
- case SfxItemPresentation::Nameless:
- {
- /* Always use OOo:A1 format */
- rText += aRange.Format();
- }
- break;
-
- default:
- {
- // added to avoid warnings
- }
- }
-
- return true;
-}
-
-/**
* ScPageHFItem - Dates from the Head and Foot lines
*/
ScPageHFItem::ScPageHFItem( sal_uInt16 nWhichP )
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index f2e0c7d35b67..373e3f6b73b2 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -244,7 +244,6 @@ ScDocument::ScDocument( ScDocumentMode eMode, SfxObjectShell* pDocShell ) :
}
pDBCollection = new ScDBCollection(this);
pSelectionAttr = nullptr;
- pChartCollection = new ScChartCollection;
apTemporaryChartLock.reset( new ScTemporaryChartLock(this) );
xColNameRanges = new ScRangePairList;
xRowNameRanges = new ScRangePairList;
@@ -427,7 +426,6 @@ ScDocument::~ScDocument()
delete pDBCollection;
delete pSelectionAttr;
apTemporaryChartLock.reset();
- delete pChartCollection;
DeleteDrawLayer();
delete pFormatExchangeList;
mpPrinter.disposeAndClear();
diff --git a/sc/source/core/data/olinetab.cxx b/sc/source/core/data/olinetab.cxx
index 4ffac7543638..f43a873556ab 100644
--- a/sc/source/core/data/olinetab.cxx
+++ b/sc/source/core/data/olinetab.cxx
@@ -317,60 +317,6 @@ bool ScOutlineArray::FindTouchedLevel(
return bFound;
}
-void ScOutlineArray::RemoveSub(SCCOLROW nStartPos, SCCOLROW nEndPos, size_t nLevel)
-{
- if ( nLevel >= nDepth )
- return;
-
- ScOutlineCollection& rColl = aCollections[nLevel];
-
- ScOutlineCollection::iterator it = rColl.begin(), itEnd = rColl.end();
- while (it != itEnd)
- {
- ScOutlineEntry *const pEntry = &it->second;
- SCCOLROW nStart = pEntry->GetStart();
- SCCOLROW nEnd = pEntry->GetEnd();
- if (nStart >= nStartPos && nEnd <= nEndPos)
- {
- // Overlaps
- RemoveSub( nStart, nEnd, nLevel+1 );
-
- // Re-calc iterator positions after the tree gets invalidated
- size_t nPos = std::distance(rColl.begin(), it);
- rColl.erase(it);
- it = rColl.begin();
- std::advance(it, nPos);
- itEnd = rColl.end();
- }
- else
- ++it;
- }
-
- it = rColl.begin();
- itEnd = rColl.end();
-
- while (it != itEnd)
- {
- ScOutlineEntry *const pEntry = &it->second;
- SCCOLROW nStart = pEntry->GetStart();
- SCCOLROW nEnd = pEntry->GetEnd();
-
- if (nStart >= nStartPos && nEnd <= nEndPos)
- {
- RemoveSub( nStart, nEnd, nLevel+1 );
-
- // Re-calc iterator positions after the tree gets invalidated
- size_t nPos = std::distance(rColl.begin(), it);
- rColl.erase(it);
- it = rColl.begin();
- std::advance(it, nPos);
- itEnd = rColl.end();
- }
- else
- ++it;
- }
-}
-
void ScOutlineArray::PromoteSub(SCCOLROW nStartPos, SCCOLROW nEndPos, size_t nStartLevel)
{
if (nStartLevel==0)
diff --git a/sc/source/core/tool/chartarr.cxx b/sc/source/core/tool/chartarr.cxx
index 883a2b7cd622..4e9cdc57a867 100644
--- a/sc/source/core/tool/chartarr.cxx
+++ b/sc/source/core/tool/chartarr.cxx
@@ -398,42 +398,4 @@ ScMemChart* ScChartArray::CreateMemChartMulti()
return pMemChart;
}
-ScChartCollection::ScChartCollection() {}
-ScChartCollection::ScChartCollection(const ScChartCollection& r)
-{
- for (auto const& it : r.m_Data)
- {
- m_Data.push_back(o3tl::make_unique<ScChartArray>(*it));
- }
-}
-
-void ScChartCollection::clear()
-{
- m_Data.clear();
-}
-
-size_t ScChartCollection::size() const
-{
- return m_Data.size();
-}
-
-bool ScChartCollection::empty() const
-{
- return m_Data.empty();
-}
-
-ScChartArray* ScChartCollection::operator[](size_t nIndex)
-{
- if (m_Data.size() <= nIndex)
- return nullptr;
- return m_Data[nIndex].get();
-}
-
-const ScChartArray* ScChartCollection::operator[](size_t nIndex) const
-{
- if (m_Data.size() <= nIndex)
- return nullptr;
- return m_Data[nIndex].get();
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx
index 1a6b3f56157b..43c607a2f15f 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -1818,19 +1818,6 @@ sal_uInt16 ScCheckListBox::GetCheckedEntryCount() const
return nCount;
}
-void ScCheckListBox::ExpandChildren( SvTreeListEntry* pParent )
-{
- if ( pParent )
- Expand( pParent );
- // Iterate over the children
- SvTreeListEntry* pEntry = pParent ? FirstChild( pParent ) : First();
- while ( pEntry )
- {
- ExpandChildren( pEntry );
- pEntry = NextSibling( pEntry );
- }
-}
-
void ScCheckListBox::KeyInput( const KeyEvent& rKEvt )
{
const vcl::KeyCode& rKey = rKEvt.GetKeyCode();
diff --git a/sc/source/ui/inc/checklistmenu.hxx b/sc/source/ui/inc/checklistmenu.hxx
index 430820b98ad9..5f58e8015a6c 100644
--- a/sc/source/ui/inc/checklistmenu.hxx
+++ b/sc/source/ui/inc/checklistmenu.hxx
@@ -246,7 +246,6 @@ class ScCheckListBox : public SvTreeListBox
bool IsChecked( const OUString& sName, SvTreeListEntry* pParent );
SvTreeListEntry* FindEntry( SvTreeListEntry* pParent, const OUString& sNode );
sal_uInt16 GetCheckedEntryCount() const;
- void ExpandChildren( SvTreeListEntry* pParent );
virtual void KeyInput( const KeyEvent& rKEvt ) override;
virtual void MouseButtonDown(const MouseEvent& rMEvt) override;
virtual void MouseButtonUp(const MouseEvent& rMEvt) override;
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx
index 8d0970ed5d81..9d41fe95ae43 100644
--- a/sfx2/source/appl/workwin.cxx
+++ b/sfx2/source/appl/workwin.cxx
@@ -1016,28 +1016,6 @@ void SfxWorkWindow::SetObjectBar_Impl(sal_uInt16 nPos, SfxVisibilityFlags nFlags
aObjBarList.push_back( aObjBar );
}
-bool SfxWorkWindow::KnowsObjectBar_Impl( sal_uInt16 nPos ) const
-
-/* [Description]
-
- Determines if a object list is available at the position in question.
- This is independent for the fact whether it is actually turned on or off.
-*/
-
-{
- if ( pParent && IsAppWorkWinToolbox_Impl( nPos ) )
- return pParent->KnowsObjectBar_Impl( nPos );
-
- for (const SfxObjectBar_Impl& rBar : aObjBarList)
- {
- if ( rBar.nPos == nPos )
- return true;
- }
-
- return false;
-}
-
-
bool SfxWorkWindow::IsVisible_Impl( SfxVisibilityFlags nMode ) const
{
switch( nUpdateMode )
diff --git a/sfx2/source/control/objface.cxx b/sfx2/source/control/objface.cxx
index e45991db8d2b..64ad7fdcf29e 100644
--- a/sfx2/source/control/objface.cxx
+++ b/sfx2/source/control/objface.cxx
@@ -262,24 +262,6 @@ const SfxSlot* SfxInterface::GetRealSlot( const SfxSlot *pSlot ) const
}
-const SfxSlot* SfxInterface::GetRealSlot( sal_uInt16 nSlotId ) const
-{
-
- assert( pSlots );
- assert( nCount );
-
- const SfxSlot *pSlot = GetSlot(nSlotId);
- if ( !pSlot )
- {
- if(pGenoType)
- return pGenoType->GetRealSlot(nSlotId);
- SAL_WARN( "sfx.control", "unknown Slot" );
- return nullptr;
- }
-
- return nullptr;
-}
-
void SfxInterface::RegisterPopupMenu( const OUString& rResourceName )
{
pImplData->aPopupName = rResourceName;
diff --git a/sfx2/source/inc/splitwin.hxx b/sfx2/source/inc/splitwin.hxx
index 32e745f2f131..34d26e334763 100644
--- a/sfx2/source/inc/splitwin.hxx
+++ b/sfx2/source/inc/splitwin.hxx
@@ -100,7 +100,6 @@ public:
{
SetUpdateMode( !bLock );
}
- using Window::IsLocked;
bool GetWindowPos( const SfxDockingWindow* pWindow,
sal_uInt16& rLine, sal_uInt16& rPos ) const;
diff --git a/sfx2/source/inc/workwin.hxx b/sfx2/source/inc/workwin.hxx
index 6a80892900eb..5ceeb8daf0cd 100644
--- a/sfx2/source/inc/workwin.hxx
+++ b/sfx2/source/inc/workwin.hxx
@@ -269,7 +269,6 @@ public:
void ResetObjectBars_Impl();
void SetObjectBar_Impl(sal_uInt16 nPos, SfxVisibilityFlags nFlags, ToolbarId eId,
SfxInterface *pIFace);
- bool KnowsObjectBar_Impl( sal_uInt16 nPos ) const;
bool IsVisible_Impl();
void MakeVisible_Impl( bool );
void Lock_Impl( bool );
diff --git a/sot/source/sdstor/stgdir.cxx b/sot/source/sdstor/stgdir.cxx
index 4852108cfb0c..309c5f896112 100644
--- a/sot/source/sdstor/stgdir.cxx
+++ b/sot/source/sdstor/stgdir.cxx
@@ -672,27 +672,6 @@ bool StgDirEntry::Tmp2Strm()
return true;
}
-// Check if the given entry is contained in this entry
-
-bool StgDirEntry::IsContained( StgDirEntry* pStg )
-{
- if( m_aEntry.GetType() == STG_STORAGE )
- {
- StgIterator aIter( *this );
- StgDirEntry* p = aIter.First();
- while( p )
- {
- if( !p->m_aEntry.Compare( pStg->m_aEntry ) )
- return false;
- if( p->m_aEntry.GetType() == STG_STORAGE )
- if( !p->IsContained( pStg ) )
- return false;
- p = aIter.Next();
- }
- }
- return true;
-}
-
// Invalidate all open entries by setting the RefCount to 0. If the bDel
// flag is set, also set the invalid flag to indicate deletion during the
// next dir stream flush.
diff --git a/sot/source/sdstor/stgdir.hxx b/sot/source/sdstor/stgdir.hxx
index 7559d6882110..95c624c1205b 100644
--- a/sot/source/sdstor/stgdir.hxx
+++ b/sot/source/sdstor/stgdir.hxx
@@ -68,7 +68,6 @@ public:
void Enum( sal_Int32& ); // enumerate entries for iteration
void DelTemp( bool ); // delete temporary entries
bool Store( StgDirStrm& ); // save entry into dir strm
- bool IsContained( StgDirEntry* ); // check if subentry
void SetDirty() { m_bDirty = true; }
bool IsDirty();
diff --git a/svx/source/engine3d/obj3d.cxx b/svx/source/engine3d/obj3d.cxx
index f31f110b99f2..db658f6515a4 100644
--- a/svx/source/engine3d/obj3d.cxx
+++ b/svx/source/engine3d/obj3d.cxx
@@ -570,23 +570,6 @@ void E3dObject::InvalidateBoundVolume()
maLocalBoundVol.reset();
}
-// Pass on the changes of the BoundVolumes to all child objects
-
-void E3dObject::SetBoundVolInvalid()
-{
- InvalidateBoundVolume();
-
- for(size_t a = 0; a < maSubList.GetObjCount(); ++a)
- {
- E3dObject* pCandidate = dynamic_cast< E3dObject* >(maSubList.GetObj(a));
-
- if(pCandidate)
- {
- pCandidate->SetBoundVolInvalid();
- }
- }
-}
-
// Pass on the changes in transformation to all child objects
void E3dObject::SetTransformChanged()
diff --git a/svx/source/form/navigatortreemodel.cxx b/svx/source/form/navigatortreemodel.cxx
index f9e1d3385877..8c8cedd6f0a4 100644
--- a/svx/source/form/navigatortreemodel.cxx
+++ b/svx/source/form/navigatortreemodel.cxx
@@ -485,23 +485,6 @@ namespace svxform
}
- void NavigatorTreeModel::ClearBranch( FmFormData const * pParentData )
- {
-
- // delete all entries of this branch
- FmEntryDataList* pChildList = pParentData->GetChildList();
-
- for( size_t i = pChildList->size(); i > 0; )
- {
- FmEntryData* pChildData = pChildList->at( --i );
- if( dynamic_cast<const FmFormData*>( pChildData) != nullptr )
- ClearBranch( static_cast<FmFormData*>(pChildData) );
-
- pChildList->remove( pChildData );
- }
- }
-
-
void NavigatorTreeModel::FillBranch( FmFormData* pFormData )
{
@@ -925,31 +908,6 @@ namespace svxform
return true;
}
-
- SdrObject* NavigatorTreeModel::Search(SdrObjListIter& rIter, const Reference< XFormComponent > & xComp)
- {
- while (rIter.IsMore())
- {
- SdrObject* pObj = rIter.Next();
- FmFormObj* pFormObject = FmFormObj::GetFormObject( pObj );
- if ( pFormObject )
- {
- Reference< XFormComponent > xFormViewControl( pFormObject->GetUnoControlModel(), UNO_QUERY );
- if ( xFormViewControl == xComp )
- return pObj;
- }
- else if ( pObj->IsGroupObject() )
- {
- SdrObjListIter aIter( *pObj->GetSubList() );
- pObj = Search( aIter, xComp );
- if ( pObj )
- return pObj;
- }
- }
- return nullptr;
- }
-
-
}
diff --git a/svx/source/inc/fmexpl.hxx b/svx/source/inc/fmexpl.hxx
index 57e5655424fe..31d4668e3b55 100644
--- a/svx/source/inc/fmexpl.hxx
+++ b/svx/source/inc/fmexpl.hxx
@@ -346,7 +346,6 @@ namespace svxform
virtual ~NavigatorTreeModel() override;
void FillBranch( FmFormData* pParentData );
- void ClearBranch( FmFormData const * pParentData );
void UpdateContent( FmFormShell* pNewShell );
void Insert( FmEntryData* pEntryData, sal_uLong nRelPos = CONTAINER_APPEND,
@@ -365,7 +364,6 @@ namespace svxform
FmEntryData* FindData( const OUString& rText, FmFormData const * pParentData, bool bRecurs );
FmEntryDataList* GetRootList() const { return m_pRootList; }
static css::uno::Reference< css::container::XIndexContainer > GetFormComponents( FmFormData const * pParentFormData );
- SdrObject* Search(SdrObjListIter& rIter, const css::uno::Reference< css::form::XFormComponent >& xComp);
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
};
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index a03b6f53963c..d19628b4e93c 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -691,19 +691,6 @@ bool SdrObjList::IsReadOnly() const
return bRet;
}
-size_t SdrObjList::CountAllObjects() const
-{
- const size_t nCount=GetObjCount();
- size_t nCnt=nCount;
- for (size_t nNum=0; nNum<nCount; nNum++) {
- SdrObjList* pSubOL=GetObj(nNum)->GetSubList();
- if (pSubOL!=nullptr) {
- nCnt+=pSubOL->CountAllObjects();
- }
- }
- return nCnt;
-}
-
void SdrObjList::FlattenGroups()
{
const size_t nObj = GetObjCount();
diff --git a/sw/inc/SwNumberTree.hxx b/sw/inc/SwNumberTree.hxx
index c81f159753ec..960d89335b0d 100644
--- a/sw/inc/SwNumberTree.hxx
+++ b/sw/inc/SwNumberTree.hxx
@@ -280,13 +280,6 @@ public:
void InvalidateMe();
/**
- Validate the tree.
-
- Validates all nodes in this subtree.
- */
- void ValidateTree();
-
- /**
Validates this node.
Calls Validate(this) on parent.
diff --git a/sw/inc/pagedesc.hxx b/sw/inc/pagedesc.hxx
index 8aae903f9f99..21878db19466 100644
--- a/sw/inc/pagedesc.hxx
+++ b/sw/inc/pagedesc.hxx
@@ -267,8 +267,6 @@ public:
static SwPageDesc* GetByName(SwDoc& rDoc, const OUString& rName);
SwPageDesc& operator=( const SwPageDesc& );
- bool operator<(const SwPageDesc& pd) const
- { return m_StyleName < pd.m_StyleName; }
SwPageDesc( const SwPageDesc& );
virtual ~SwPageDesc() override;
diff --git a/sw/inc/view.hxx b/sw/inc/view.hxx
index a1dc5bcf9359..a865b4184ee5 100644
--- a/sw/inc/view.hxx
+++ b/sw/inc/view.hxx
@@ -528,7 +528,6 @@ public:
bool IsFormMode() const;
bool IsBezierEditMode();
bool AreOnlyFormsSelected() const;
- bool HasDrwObj(SdrObject const *pSdrObj) const;
bool HasOnlyObj(SdrObject const *pSdrObj, SdrInventor eObjInventor) const;
bool BeginTextEdit( SdrObject* pObj, SdrPageView* pPV=nullptr,
vcl::Window* pWin=nullptr, bool bIsNewObj=false, bool bSetSelectionToStart=false );
diff --git a/sw/source/core/SwNumberTree/SwNumberTree.cxx b/sw/source/core/SwNumberTree/SwNumberTree.cxx
index f7d1364d0271..fc28b13fb396 100644
--- a/sw/source/core/SwNumberTree/SwNumberTree.cxx
+++ b/sw/source/core/SwNumberTree/SwNumberTree.cxx
@@ -297,32 +297,6 @@ void SwNumberTreeNode::Validate(const SwNumberTreeNode * pNode) const
}
}
-void SwNumberTreeNode::ValidateTree()
-{
- if (! IsContinuous())
- {
- {
- tSwNumberTreeChildren::reverse_iterator aIt = mChildren.rbegin();
-
- if (aIt != mChildren.rend())
- Validate(*aIt);
- }
- {
- tSwNumberTreeChildren::iterator aIt;
-
- for (aIt = mChildren.begin(); aIt != mChildren.end(); ++aIt)
- (*aIt)->ValidateTree();
- }
- }
- else
- {
- SwNumberTreeNode * pNode = GetLastDescendant();
-
- if (pNode && pNode->mpParent)
- pNode->mpParent->Validate(pNode);
- }
-}
-
void SwNumberTreeNode::GetNumberVector_(vector<SwNumberTree::tSwNumTreeNumber> & rVector,
bool bValidate) const
{
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx
index beefc840863b..34d95e65d59b 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -83,8 +83,6 @@ class SwAccessibleTableData_Impl
bool mbOnlyTableColumnHeader;
void CollectData( const SwFrame *pFrame );
- void CollectColumnHeaderData( const SwFrame *pFrame );
- void CollectRowHeaderData( const SwFrame *pFrame );
void CollectExtents( const SwFrame *pFrame );
bool FindCell( const Point& rPos, const SwFrame *pFrame ,
@@ -174,95 +172,6 @@ void SwAccessibleTableData_Impl::CollectData( const SwFrame *pFrame )
}
}
-void SwAccessibleTableData_Impl::CollectRowHeaderData( const SwFrame *pFrame )
-{
- const SwAccessibleChildSList aList( *pFrame, mrAccMap );
- SwAccessibleChildSList::const_iterator aIter( aList.begin() );
- SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
- while( aIter != aEndIter )
- {
- const SwAccessibleChild& rLower = *aIter;
- const SwFrame *pLower = rLower.GetSwFrame();
- if( pLower )
- {
- if( pLower->IsRowFrame() )
- {
-
- const SwTableLine* pLine = static_cast<const SwRowFrame*>(pLower)->GetTabLine();
- while( pLine->GetUpper() )
- pLine = pLine->GetUpper()->GetUpper();
-
- // Headerline?
- //if(mpTabFrame->GetTable()->GetTabLines()[ 0 ] != pLine)
- //return ;
-
- maRows.insert( pLower->getFrameArea().Top() - maTabFramePos.Y() );
-
- CollectRowHeaderData( pLower );
-
- }
- else if( pLower->IsCellFrame() &&
- rLower.IsAccessible( mbIsInPagePreview ) )
- {
- //Added by yanjun. Can't find the "GetRowHeaderFlag" function (need verify).
- //if(static_cast<SwCellFrame*>(pLower)->GetRowHeaderFlag())
- // maColumns.insert( pLower->getFrameArea().Left() - maTabFramePos.X() );
- }
- else
- {
- CollectRowHeaderData( pLower );
- }
- }
- ++aIter;
- }
-}
-
-void SwAccessibleTableData_Impl::CollectColumnHeaderData( const SwFrame *pFrame )
-{
- const SwAccessibleChildSList aList( *pFrame, mrAccMap );
- SwAccessibleChildSList::const_iterator aIter( aList.begin() );
- SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
- while( aIter != aEndIter )
- {
- const SwAccessibleChild& rLower = *aIter;
- const SwFrame *pLower = rLower.GetSwFrame();
- if( pLower )
- {
- if( pLower->IsRowFrame() )
- {
-
- const SwTableLine* pLine = static_cast<const SwRowFrame*>(pLower)->GetTabLine();
- while( pLine->GetUpper() )
- pLine = pLine->GetUpper()->GetUpper();
-
- // Headerline?
- //if(mpTabFrame->GetTable()->GetTabLines()[ 0 ] != pLine)
- //return ;
-
- //if the current line is now header line, then return ;
- sal_Int16 iCurrentRowIndex = mpTabFrame->GetTable()->GetTabLines().GetPos( pLine);
- if(iCurrentRowIndex >= mpTabFrame->GetTable()->GetRowsToRepeat_())
- return ;
-
- maRows.insert( pLower->getFrameArea().Top() - maTabFramePos.Y() );
-
- CollectColumnHeaderData( pLower );
-
- }
- else if( pLower->IsCellFrame() &&
- rLower.IsAccessible( mbIsInPagePreview ) )
- {
- maColumns.insert( pLower->getFrameArea().Left() - maTabFramePos.X() );
- }
- else
- {
- CollectColumnHeaderData( pLower );
- }
- }
- ++aIter;
- }
-}
-
void SwAccessibleTableData_Impl::CollectExtents( const SwFrame *pFrame )
{
const SwAccessibleChildSList aList( *pFrame, mrAccMap );
diff --git a/sw/source/uibase/uiview/viewdraw.cxx b/sw/source/uibase/uiview/viewdraw.cxx
index 04e2bcdfa32b..013e40085d02 100644
--- a/sw/source/uibase/uiview/viewdraw.cxx
+++ b/sw/source/uibase/uiview/viewdraw.cxx
@@ -677,28 +677,6 @@ bool SwView::AreOnlyFormsSelected() const
return bForm;
}
-bool SwView::HasDrwObj(SdrObject const *pSdrObj) const
-{
- bool bRet = false;
-
- if (pSdrObj->IsGroupObject())
- {
- SdrObjList* pList = pSdrObj->GetSubList();
- const size_t nCnt = pList->GetObjCount();
-
- for (size_t i = 0; i < nCnt; ++i)
- {
- bRet = HasDrwObj(pList->GetObj(i));
- if (bRet)
- break;
- }
- }
- else if (SdrInventor::Default == pSdrObj->GetObjInventor() || pSdrObj->Is3DObj())
- return true;
-
- return bRet;
-}
-
bool SwView::HasOnlyObj(SdrObject const *pSdrObj, SdrInventor eObjInventor) const
{
bool bRet = false;
diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx
index a378cfdc511f..3d8ea7b155ef 100644
--- a/tools/source/ref/globname.cxx
+++ b/tools/source/ref/globname.cxx
@@ -147,19 +147,6 @@ bool SvGlobalName::operator < ( const SvGlobalName & rObj ) const
return pImp->szData.Data1 < rObj.pImp->szData.Data1;
}
-SvGlobalName & SvGlobalName::operator += ( sal_uInt32 n )
-{
- sal_uInt32 nOld = pImp->szData.Data1;
- pImp->szData.Data1 += n;
-
- if( nOld > pImp->szData.Data1 )
- {
- // overflow
- pImp->szData.Data2++;
- }
- return *this;
-}
-
bool SvGlobalName::operator == ( const SvGlobalName & rObj ) const
{
return pImp == rObj.pImp;
diff --git a/vbahelper/source/msforms/vbacontrols.cxx b/vbahelper/source/msforms/vbacontrols.cxx
index 1ebbd767d80e..7efa5697df4a 100644
--- a/vbahelper/source/msforms/vbacontrols.cxx
+++ b/vbahelper/source/msforms/vbacontrols.cxx
@@ -66,19 +66,6 @@ private:
mIndices[ msNames[ nIndex ] ] = nIndex;
}
}
- void getNestedControls( ControlVec& vControls, uno::Reference< awt::XControlContainer > const & xContainer )
- {
- uno::Sequence< uno::Reference< awt::XControl > > aControls = xContainer->getControls();
- const uno::Reference< awt::XControl >* pCtrl = aControls.getConstArray();
- const uno::Reference< awt::XControl >* pCtrlsEnd = pCtrl + aControls.getLength();
- for ( ; pCtrl < pCtrlsEnd; ++pCtrl )
- {
- uno::Reference< awt::XControlContainer > xC( *pCtrl, uno::UNO_QUERY );
- vControls.push_back( *pCtrl );
- if ( xC.is() )
- getNestedControls( vControls, xC );
- }
- }
public:
explicit ControlArrayWrapper( const uno::Reference< awt::XControl >& xDialog )
{
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index a9c24b8c4843..779bcbdcddc3 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -588,21 +588,6 @@ void GDIMetaFile::push_back( MetaAction* pAction )
m_aList.push_back( pAction );
}
-void GDIMetaFile::RemoveAction( size_t nPos )
-{
- if ( nPos < m_aList.size() )
- {
- ::std::vector< MetaAction* >::iterator it = m_aList.begin();
- ::std::advance( it, nPos );
- (*it)->Delete();
- m_aList.erase( it );
-
- }
-
- if( m_pPrev )
- m_pPrev->RemoveAction( nPos );
-}
-
bool GDIMetaFile::Mirror( BmpMirrorFlags nMirrorFlags )
{
const Size aOldPrefSize( GetPrefSize() );
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 0bb415251eab..28038bb53714 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -2112,24 +2112,6 @@ void Menu::RemoveDisabledEntries( bool bCheckPopups, bool bRemoveEmptyPopups )
mpLayoutData = nullptr;
}
-bool Menu::HasValidEntries()
-{
- bool bValidEntries = false;
- sal_uInt16 nCount = GetItemCount();
- for ( sal_uInt16 n = 0; !bValidEntries && ( n < nCount ); n++ )
- {
- MenuItemData* pItem = pItemList->GetDataFromPos( n );
- if ( pItem->bEnabled && ( pItem->eType != MenuItemType::SEPARATOR ) )
- {
- if ( pItem->pSubMenu )
- bValidEntries = pItem->pSubMenu->HasValidEntries();
- else
- bValidEntries = true;
- }
- }
- return bValidEntries;
-}
-
void Menu::UpdateNativeMenu()
{
if ( ImplGetSalMenu() )
diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx
index 04aab4ccdcaa..a77e09db9f13 100644
--- a/vcl/source/window/paint.cxx
+++ b/vcl/source/window/paint.cxx
@@ -1126,24 +1126,6 @@ void Window::SetWindowRegionPixel( const vcl::Region& rRegion )
}
}
-const vcl::Region& Window::GetWindowRegionPixel() const
-{
-
- if ( mpWindowImpl->mpBorderWindow )
- return mpWindowImpl->mpBorderWindow->GetWindowRegionPixel();
- else
- return mpWindowImpl->maWinRegion;
-}
-
-bool Window::IsWindowRegionPixel() const
-{
-
- if ( mpWindowImpl->mpBorderWindow )
- return mpWindowImpl->mpBorderWindow->IsWindowRegionPixel();
- else
- return mpWindowImpl->mbWinRegion;
-}
-
vcl::Region Window::GetPaintRegion() const
{
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 5083f418b2c2..c68601165057 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -1942,22 +1942,6 @@ void Window::StateChanged(StateChangedType eType)
}
}
-bool Window::IsLocked() const
-{
- if ( mpWindowImpl->mnLockCount != 0 )
- return true;
-
- VclPtr<vcl::Window> pChild = mpWindowImpl->mpFirstChild;
- while ( pChild )
- {
- if ( pChild->IsLocked() )
- return true;
- pChild = pChild->mpWindowImpl->mpNext;
- }
-
- return false;
-}
-
void Window::SetStyle( WinBits nStyle )
{
if ( mpWindowImpl && mpWindowImpl->mnStyle != nStyle )