[Libreoffice-commits] core.git: compilerplugins/clang
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Feb 21 11:04:57 UTC 2019
compilerplugins/clang/test/unusedfields.cxx | 24
compilerplugins/clang/unusedfields.cxx | 64
compilerplugins/clang/unusedfields.only-used-in-constructor.results | 174 -
compilerplugins/clang/unusedfields.readonly.results | 182 +-
compilerplugins/clang/unusedfields.untouched.results | 190 +-
compilerplugins/clang/unusedfields.writeonly.results | 886 +++++++++-
6 files changed, 1145 insertions(+), 375 deletions(-)
New commits:
commit 5febdea1d1e5b6930463ca658ad3f080955fc9f2
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed Feb 20 15:52:39 2019 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Feb 21 12:04:28 2019 +0100
loplugin:unusedfields improve write-only when dealing with operators
Change-Id: I3a060d94de7c3d77a54e7f7f87bef88458ab5161
Reviewed-on: https://gerrit.libreoffice.org/68132
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/compilerplugins/clang/test/unusedfields.cxx b/compilerplugins/clang/test/unusedfields.cxx
index 60560b9fedc5..d756272f792c 100644
--- a/compilerplugins/clang/test/unusedfields.cxx
+++ b/compilerplugins/clang/test/unusedfields.cxx
@@ -199,6 +199,30 @@ struct ReadOnlyAnalysis4
}
};
+template<class T>
+struct VclPtr
+{
+ VclPtr(T*);
+ void clear();
+};
+
+// Check calls to operators
+struct WriteOnlyAnalysis2
+// expected-error at -1 {{write m_vclwriteonly [loplugin:unusedfields]}}
+{
+ VclPtr<int> m_vclwriteonly;
+
+ WriteOnlyAnalysis2() : m_vclwriteonly(nullptr)
+ {
+ m_vclwriteonly = nullptr;
+ }
+
+ ~WriteOnlyAnalysis2()
+ {
+ m_vclwriteonly.clear();
+ }
+};
+
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/compilerplugins/clang/unusedfields.cxx b/compilerplugins/clang/unusedfields.cxx
index 43f3991f6dbc..4f7a49648a10 100644
--- a/compilerplugins/clang/unusedfields.cxx
+++ b/compilerplugins/clang/unusedfields.cxx
@@ -496,7 +496,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
// walk up the tree until we find something interesting
bool bPotentiallyReadFrom = false;
bool bDump = false;
- auto walkupUp = [&]() {
+ auto walkUp = [&]() {
child = parent;
auto parentsRange = compiler.getASTContext().getParents(*parent);
parent = parentsRange.begin() == parentsRange.end() ? nullptr : parentsRange.begin()->get<Stmt>();
@@ -526,7 +526,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
else if (isa<CastExpr>(parent) || isa<MemberExpr>(parent) || isa<ParenExpr>(parent) || isa<ParenListExpr>(parent)
|| isa<ArrayInitLoopExpr>(parent) || isa<ExprWithCleanups>(parent))
{
- walkupUp();
+ walkUp();
}
else if (auto unaryOperator = dyn_cast<UnaryOperator>(parent))
{
@@ -547,7 +547,7 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
UO_PreInc / UO_PostInc / UO_PreDec / UO_PostDec
But we still walk up in case the result of the expression is used in a read sense.
*/
- walkupUp();
+ walkUp();
}
else if (auto caseStmt = dyn_cast<CaseStmt>(parent))
{
@@ -571,7 +571,41 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
bPotentiallyReadFrom = true;
break;
}
- walkupUp();
+ walkUp();
+ }
+ else if (auto binaryOp = dyn_cast<BinaryOperator>(parent))
+ {
+ BinaryOperator::Opcode op = binaryOp->getOpcode();
+ const bool assignmentOp = op == BO_Assign || op == BO_MulAssign
+ || op == BO_DivAssign || op == BO_RemAssign || op == BO_AddAssign
+ || op == BO_SubAssign || op == BO_ShlAssign || op == BO_ShrAssign
+ || op == BO_AndAssign || op == BO_XorAssign || op == BO_OrAssign;
+ if (binaryOp->getLHS() == child && assignmentOp)
+ break;
+ else
+ {
+ bPotentiallyReadFrom = true;
+ break;
+ }
+ }
+ else if (auto operatorCallExpr = dyn_cast<CXXOperatorCallExpr>(parent))
+ {
+ auto op = operatorCallExpr->getOperator();
+ const bool assignmentOp = op == OO_Equal || op == OO_StarEqual ||
+ op == OO_SlashEqual || op == OO_PercentEqual ||
+ op == OO_PlusEqual || op == OO_MinusEqual ||
+ op == OO_LessLessEqual || op == OO_GreaterGreaterEqual ||
+ op == OO_AmpEqual || op == OO_CaretEqual ||
+ op == OO_PipeEqual;
+ if (operatorCallExpr->getArg(0) == child && assignmentOp)
+ break;
+ else if (op == OO_GreaterGreaterEqual && operatorCallExpr->getArg(1) == child)
+ break; // this is a write-only call
+ else
+ {
+ bPotentiallyReadFrom = true;
+ break;
+ }
}
else if (auto callExpr = dyn_cast<CallExpr>(parent))
{
@@ -594,9 +628,6 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
|| name == "clear" || name == "fill")
// write-only modifications to collections
;
- else if (name.find(">>=") != std::string::npos && callExpr->getArg(1) == child)
- // this is a write-only call
- ;
else if (name == "dispose" || name == "disposeAndClear" || name == "swap")
// we're abusing the write-only analysis here to look for fields which don't have anything useful
// being done to them, so we're ignoring things like std::vector::clear, std::vector::swap,
@@ -609,19 +640,6 @@ void UnusedFields::checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* membe
bPotentiallyReadFrom = true;
break;
}
- else if (auto binaryOp = dyn_cast<BinaryOperator>(parent))
- {
- BinaryOperator::Opcode op = binaryOp->getOpcode();
- // If the child is on the LHS and it is an assignment op, we are obviously not reading from it
- const bool assignmentOp = op == BO_Assign || op == BO_MulAssign
- || op == BO_DivAssign || op == BO_RemAssign || op == BO_AddAssign
- || op == BO_SubAssign || op == BO_ShlAssign || op == BO_ShrAssign
- || op == BO_AndAssign || op == BO_XorAssign || op == BO_OrAssign;
- if (!(binaryOp->getLHS() == child && assignmentOp)) {
- bPotentiallyReadFrom = true;
- }
- break;
- }
else if (isa<ReturnStmt>(parent)
|| isa<CXXConstructExpr>(parent)
|| isa<ConditionalOperator>(parent)
@@ -705,7 +723,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
// walk up the tree until we find something interesting
bool bPotentiallyWrittenTo = false;
bool bDump = false;
- auto walkupUp = [&]() {
+ auto walkUp = [&]() {
child = parent;
auto parentsRange = compiler.getASTContext().getParents(*parent);
parent = parentsRange.begin() == parentsRange.end() ? nullptr : parentsRange.begin()->get<Stmt>();
@@ -738,7 +756,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
else if (isa<CastExpr>(parent) || isa<MemberExpr>(parent) || isa<ParenExpr>(parent) || isa<ParenListExpr>(parent)
|| isa<ArrayInitLoopExpr>(parent) || isa<ExprWithCleanups>(parent))
{
- walkupUp();
+ walkUp();
}
else if (auto unaryOperator = dyn_cast<UnaryOperator>(parent))
{
@@ -753,7 +771,7 @@ void UnusedFields::checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memb
{
if (arraySubscriptExpr->getIdx() == child)
break;
- walkupUp();
+ walkUp();
}
else if (auto operatorCallExpr = dyn_cast<CXXOperatorCallExpr>(parent))
{
diff --git a/compilerplugins/clang/unusedfields.only-used-in-constructor.results b/compilerplugins/clang/unusedfields.only-used-in-constructor.results
index 71434dd18162..cfd0acce8c78 100644
--- a/compilerplugins/clang/unusedfields.only-used-in-constructor.results
+++ b/compilerplugins/clang/unusedfields.only-used-in-constructor.results
@@ -9,21 +9,23 @@ avmedia/source/vlc/wrapper/Types.hxx:44
avmedia/source/vlc/wrapper/Types.hxx:45
libvlc_event_t::(anonymous union)::(anonymous) dummy2 const char *
avmedia/source/vlc/wrapper/Types.hxx:46
- libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:43:7)
+ libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:43:7)
avmedia/source/vlc/wrapper/Types.hxx:47
- libvlc_event_t u union (anonymous union at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:41:5)
+ libvlc_event_t u union (anonymous union at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:41:5)
avmedia/source/vlc/wrapper/Types.hxx:53
libvlc_track_description_t psz_name char *
basegfx/source/polygon/b2dtrapezoid.cxx:202
basegfx::trapezoidhelper::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32]
basic/qa/cppunit/basictest.hxx:27
MacroSnippet maDll class BasicDLL
-binaryurp/source/unmarshal.hxx:89
+binaryurp/source/unmarshal.hxx:87
binaryurp::Unmarshal buffer_ com::sun::star::uno::Sequence<sal_Int8>
binaryurp/source/writer.hxx:148
binaryurp::Writer state_ struct binaryurp::WriterState
canvas/source/vcl/impltools.hxx:117
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
+canvas/workben/canvasdemo.cxx:82
+ DemoRenderer maColorWhite uno::Sequence<double>
chart2/source/controller/accessibility/AccessibleChartShape.hxx:79
chart::AccessibleChartShape m_aShapeTreeInfo ::accessibility::AccessibleShapeTreeInfo
chart2/source/controller/inc/dlg_View3D.hxx:53
@@ -78,9 +80,9 @@ cppcanvas/source/mtfrenderer/textaction.cxx:809
cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextLineInfo const tools::TextLineInfo
cppcanvas/source/mtfrenderer/textaction.cxx:1638
cppcanvas::internal::(anonymous namespace)::OutlineAction maTextLineInfo const tools::TextLineInfo
-cppu/source/threadpool/threadpool.cxx:355
+cppu/source/threadpool/threadpool.cxx:354
_uno_ThreadPool dummy sal_Int32
-cppu/source/typelib/typelib.cxx:59
+cppu/source/typelib/typelib.cxx:56
AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:38
(anonymous namespace)::C1 n1 sal_Int16
@@ -126,9 +128,9 @@ cppu/source/uno/check.cxx:134
(anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:138
(anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
-cui/source/dialogs/colorpicker.cxx:712
+cui/source/dialogs/colorpicker.cxx:713
cui::ColorPickerDialog m_aColorPrevious class cui::ColorPreviewControl
-cui/source/factory/dlgfact.cxx:1378
+cui/source/factory/dlgfact.cxx:1386
SvxMacroAssignDialog m_aItems class SfxItemSet
cui/source/inc/cfgutil.hxx:274
SvxScriptSelectorDialog m_aStylesInfo struct SfxStylesInfo_Impl
@@ -164,13 +166,11 @@ dbaccess/source/core/api/RowSet.hxx:462
dbaccess::ORowSetClone m_bIsBookmarkable _Bool
dbaccess/source/core/dataaccess/connection.hxx:101
dbaccess::OConnection m_nInAppend std::atomic<std::size_t>
-dbaccess/source/ui/dlg/admincontrols.hxx:52
- dbaui::MySQLNativeSettings m_aControlDependencies ::svt::ControlDependencyManager
-drawinglayer/source/tools/emfphelperdata.hxx:155
+drawinglayer/source/tools/emfphelperdata.hxx:153
emfplushelper::EmfPlusHelperData mnFrameRight sal_Int32
-drawinglayer/source/tools/emfphelperdata.hxx:156
+drawinglayer/source/tools/emfphelperdata.hxx:154
emfplushelper::EmfPlusHelperData mnFrameBottom sal_Int32
-editeng/source/editeng/impedit.hxx:460
+editeng/source/editeng/impedit.hxx:462
ImpEditEngine aSelFuncSet class EditSelFunctionSet
filter/source/flash/swfwriter.hxx:391
swf::Writer maMovieTempFile utl::TempFile
@@ -184,8 +184,6 @@ filter/source/graphicfilter/icgm/chart.hxx:46
DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:47
DataNode nBoxY2 sal_Int16
-filter/source/svg/svgfilter.hxx:224
- SVGFilter mpSdrModel class SdrModel *
helpcompiler/inc/HelpCompiler.hxx:230
HelpCompiler lang const std::string
include/basic/basmgr.hxx:52
@@ -206,6 +204,8 @@ include/LibreOfficeKit/LibreOfficeKitGtk.h:33
_LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
_LOKDocViewClass parent_class GtkDrawingAreaClass
+include/oox/drawingml/shapegroupcontext.hxx:43
+ oox::drawingml::ShapeGroupContext mpMasterShapePtr oox::drawingml::ShapePtr
include/oox/export/shapes.hxx:123
oox::drawingml::ShapeExport maShapeMap oox::drawingml::ShapeExport::ShapeHashMap
include/registry/registry.hxx:35
@@ -233,13 +233,13 @@ include/sfx2/msg.hxx:133
include/sfx2/msg.hxx:133
SfxType2 nAttribs sal_uInt16
include/sfx2/msg.hxx:134
- SfxType3 nAttribs sal_uInt16
-include/sfx2/msg.hxx:134
SfxType3 aAttrib struct SfxTypeAttrib [3]
include/sfx2/msg.hxx:134
SfxType3 pType const std::type_info *
include/sfx2/msg.hxx:134
SfxType3 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
+include/sfx2/msg.hxx:134
+ SfxType3 nAttribs sal_uInt16
include/sfx2/msg.hxx:135
SfxType4 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:135
@@ -293,9 +293,9 @@ include/sfx2/msg.hxx:141
include/sfx2/msg.hxx:141
SfxType11 pType const std::type_info *
include/sfx2/msg.hxx:141
- SfxType11 nAttribs sal_uInt16
-include/sfx2/msg.hxx:141
SfxType11 aAttrib struct SfxTypeAttrib [11]
+include/sfx2/msg.hxx:141
+ SfxType11 nAttribs sal_uInt16
include/sfx2/msg.hxx:143
SfxType13 pType const std::type_info *
include/sfx2/msg.hxx:143
@@ -382,37 +382,37 @@ lingucomponent/source/languageguessing/simpleguesser.cxx:79
textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81
textcat_t output char [1024]
-lotuswordpro/source/filter/bento.hxx:352
+lotuswordpro/source/filter/bento.hxx:353
OpenStormBento::CBenNamedObject cNameListElmt class OpenStormBento::CBenNamedObjectListElmt
lotuswordpro/source/filter/clone.hxx:23
detail::has_clone::(anonymous) a char [2]
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:208
+oox/source/drawingml/diagram/diagramlayoutatoms.hxx:212
oox::drawingml::ConditionAtom maIter struct oox::drawingml::IteratorAttr
-oox/source/drawingml/diagram/layoutnodecontext.cxx:84
+oox/source/drawingml/diagram/layoutnodecontext.cxx:92
oox::drawingml::AlgorithmContext mnRevision sal_Int32
-oox/source/drawingml/diagram/layoutnodecontext.cxx:126
+oox/source/drawingml/diagram/layoutnodecontext.cxx:134
oox::drawingml::ChooseContext msName class rtl::OUString
oox/source/drawingml/hyperlinkcontext.hxx:43
oox::drawingml::HyperLinkContext maProperties class oox::PropertyMap &
-oox/source/ppt/timenodelistcontext.cxx:196
+oox/source/ppt/timenodelistcontext.cxx:199
oox::ppt::MediaNodeContext mbIsNarration _Bool
-oox/source/ppt/timenodelistcontext.cxx:197
+oox/source/ppt/timenodelistcontext.cxx:200
oox::ppt::MediaNodeContext mbFullScrn _Bool
-oox/source/ppt/timenodelistcontext.cxx:391
+oox/source/ppt/timenodelistcontext.cxx:394
oox::ppt::SequenceTimeNodeContext mbConcurrent _Bool
-oox/source/ppt/timenodelistcontext.cxx:392
- oox::ppt::SequenceTimeNodeContext mnNextAc sal_Int32
-oox/source/ppt/timenodelistcontext.cxx:392
+oox/source/ppt/timenodelistcontext.cxx:395
oox::ppt::SequenceTimeNodeContext mnPrevAc sal_Int32
-oox/source/ppt/timenodelistcontext.cxx:628
+oox/source/ppt/timenodelistcontext.cxx:395
+ oox::ppt::SequenceTimeNodeContext mnNextAc sal_Int32
+oox/source/ppt/timenodelistcontext.cxx:631
oox::ppt::AnimContext mnValueType sal_Int32
-oox/source/ppt/timenodelistcontext.cxx:710
+oox/source/ppt/timenodelistcontext.cxx:713
oox::ppt::AnimScaleContext mbZoomContents _Bool
-oox/source/ppt/timenodelistcontext.cxx:850
+oox/source/ppt/timenodelistcontext.cxx:853
oox::ppt::AnimMotionContext msPtsTypes class rtl::OUString
-oox/source/ppt/timenodelistcontext.cxx:851
+oox/source/ppt/timenodelistcontext.cxx:854
oox::ppt::AnimMotionContext mnPathEditMode sal_Int32
-oox/source/ppt/timenodelistcontext.cxx:852
+oox/source/ppt/timenodelistcontext.cxx:855
oox::ppt::AnimMotionContext mnAngle sal_Int32
opencl/source/openclwrapper.cxx:304
openclwrapper::(anonymous namespace)::OpenCLEnv mpOclCmdQueue cl_command_queue [1]
@@ -500,18 +500,16 @@ sc/inc/token.hxx:400
SingleDoubleRefModifier aDub struct ScComplexRefData
sc/qa/unit/ucalc_column.cxx:104
aInputs aName const char *
-sc/source/core/data/document.cxx:1237
+sc/source/core/data/document.cxx:1239
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch const sc::AutoCalcSwitch
-sc/source/core/data/document.cxx:1238
+sc/source/core/data/document.cxx:1240
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk const class ScBulkBroadcast
-sc/source/filter/html/htmlpars.cxx:3030
+sc/source/filter/html/htmlpars.cxx:3002
(anonymous namespace)::CSSHandler::MemStr mp const char *
-sc/source/filter/html/htmlpars.cxx:3031
+sc/source/filter/html/htmlpars.cxx:3003
(anonymous namespace)::CSSHandler::MemStr mn size_t
sc/source/filter/inc/htmlpars.hxx:614
ScHTMLQueryParser mnUnusedId ScHTMLTableId
-sc/source/filter/inc/namebuff.hxx:79
- RangeNameBufferWK3::Entry aScAbsName const class rtl::OUString
sc/source/filter/inc/sheetdatacontext.hxx:62
oox::xls::SheetDataContext aReleaser const class SolarMutexReleaser
sc/source/filter/inc/xetable.hxx:1002
@@ -562,71 +560,71 @@ sccomp/source/solver/DifferentialEvolution.hxx:35
DifferentialEvolutionAlgorithm maRandomDevice std::random_device
sccomp/source/solver/ParticelSwarmOptimization.hxx:56
ParticleSwarmOptimizationAlgorithm maRandomDevice std::random_device
-scripting/source/stringresource/stringresource.cxx:1299
+scripting/source/stringresource/stringresource.cxx:1298
stringresource::BinaryInput m_aData const Sequence<sal_Int8>
sd/inc/anminfo.hxx:52
SdAnimationInfo maSecondSoundFile const class rtl::OUString
-sd/source/filter/eppt/epptbase.hxx:347
+sd/source/filter/eppt/epptbase.hxx:349
PPTWriterBase maFraction const class Fraction
sd/source/filter/ppt/pptin.hxx:82
SdPPTImport maParam struct PowerPointImportParam
sd/source/ui/inc/AccessibleDocumentViewBase.hxx:262
accessibility::AccessibleDocumentViewBase maViewForwarder class accessibility::AccessibleViewForwarder
-sd/source/ui/remotecontrol/Receiver.hxx:36
+sd/source/ui/remotecontrol/Receiver.hxx:35
sd::Receiver pTransmitter class sd::Transmitter *
sd/source/ui/remotecontrol/ZeroconfService.hxx:36
sd::ZeroconfService port const uint
-sd/source/ui/table/TableDesignPane.hxx:104
+sd/source/ui/table/TableDesignPane.hxx:100
sd::TableDesignPane aImpl const class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1297
sd::DocumentRenderer::Implementation mxObjectShell const SfxObjectShellRef
-sd/source/ui/view/viewshel.cxx:1208
+sd/source/ui/view/viewshel.cxx:1201
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock const sd::slidesorter::view::class SlideSorterView::DrawLock
-sd/source/ui/view/viewshel.cxx:1209
+sd/source/ui/view/viewshel.cxx:1202
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock const sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
-sd/source/ui/view/viewshel.cxx:1210
+sd/source/ui/view/viewshel.cxx:1203
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock const sd::slidesorter::controller::class PageSelector::UpdateLock
-sd/source/ui/view/viewshel.cxx:1211
+sd/source/ui/view/viewshel.cxx:1204
sd::KeepSlideSorterInSyncWithPageChanges m_aContext const sd::slidesorter::controller::class SelectionObserver::Context
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition comment rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition simple_type rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition null_object rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition stringtype rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition boolean rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
+ PDFGrammar::definition name rule<ScannerT>
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:262
PDFGrammar::definition stream rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition boolean rule<ScannerT>
+ PDFGrammar::definition dict_element rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition name rule<ScannerT>
+ PDFGrammar::definition objectref rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition null_object rule<ScannerT>
+ PDFGrammar::definition array rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition stringtype rule<ScannerT>
+ PDFGrammar::definition dict_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition comment rule<ScannerT>
+ PDFGrammar::definition dict_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
- PDFGrammar::definition simple_type rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition objectref rule<ScannerT>
+ PDFGrammar::definition value rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition dict_element rule<ScannerT>
+ PDFGrammar::definition array_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition value rule<ScannerT>
+ PDFGrammar::definition array_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition dict_end rule<ScannerT>
+ PDFGrammar::definition object rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition array rule<ScannerT>
+ PDFGrammar::definition object_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
- PDFGrammar::definition dict_begin rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
PDFGrammar::definition object_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
- PDFGrammar::definition array_end rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
- PDFGrammar::definition array_begin rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
- PDFGrammar::definition object rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
- PDFGrammar::definition object_end rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
PDFGrammar::definition trailer rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
PDFGrammar::definition xref rule<ScannerT>
sfx2/source/doc/doctempl.cxx:116
DocTempl::DocTempl_EntryData_Impl mxObjShell const class SfxObjectShellLock
@@ -654,9 +652,9 @@ slideshow/source/engine/smilfunctionparser.cxx:503
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:504
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::rule<ScannerT>
-starmath/inc/view.hxx:218
+starmath/inc/view.hxx:217
SmViewShell maGraphicController const class SmGraphicController
-starmath/source/accessibility.hxx:271
+starmath/source/accessibility.hxx:268
SmEditSource rEditAcc class SmEditAccessible &
svgio/inc/svgcharacternode.hxx:89
svgio::svgreader::SvgTextPosition maY ::std::vector<double>
@@ -694,19 +692,19 @@ svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1091
(anonymous namespace)::ExpressionGrammar::definition modifierReference ::boost::spirit::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1092
(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::rule<ScannerT>
-svx/source/dialog/framelinkarray.cxx:379
+svx/source/dialog/framelinkarray.cxx:380
svx::frame::MergedCellIterator mnFirstRow size_t
svx/source/dialog/imapwnd.hxx:78
IMapWindow maItemInfos struct SfxItemInfo [1]
svx/source/gallery2/galbrws2.cxx:115
(anonymous namespace)::GalleryThemePopup maBuilder class VclBuilder
-svx/source/stbctrls/pszctrl.cxx:94
+svx/source/stbctrls/pszctrl.cxx:95
FunctionPopup_Impl m_aBuilder class VclBuilder
svx/source/stbctrls/selctrl.cxx:37
SelectionTypePopup m_aBuilder class VclBuilder
svx/source/stbctrls/zoomctrl.cxx:56
ZoomPopup_Impl m_aBuilder class VclBuilder
-svx/source/svdraw/svdcrtv.cxx:49
+svx/source/svdraw/svdcrtv.cxx:50
ImplConnectMarkerOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/xml/xmleohlp.cxx:72
OutputStorageWrapper_Impl aTempFile class utl::TempFile
@@ -714,17 +712,17 @@ sw/inc/unosett.hxx:145
SwXNumberingRules m_pImpl ::sw::UnoImplPtr<Impl>
sw/qa/core/test_ToxTextGenerator.cxx:134
ToxTextGeneratorWithMockedChapterField mChapterFieldType class SwChapterFieldType
-sw/qa/extras/uiwriter/uiwriter.cxx:4019
+sw/qa/extras/uiwriter/uiwriter.cxx:4017
IdleTask maIdle class Idle
sw/source/core/crsr/crbm.cxx:66
(anonymous namespace)::CursorStateHelper m_aSaveState const class SwCursorSaveState
-sw/source/core/inc/swfont.hxx:975
+sw/source/core/inc/swfont.hxx:986
SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/layout/dbg_lay.cxx:170
SwImplEnterLeave nAction const enum DbgAction
sw/source/core/text/inftxt.hxx:686
SwTextSlot aText class rtl::OUString
-sw/source/core/text/porfld.cxx:141
+sw/source/core/text/porfld.cxx:140
SwFieldSlot aText class rtl::OUString
sw/source/ui/dbui/mmaddressblockpage.hxx:208
SwCustomizeAddressBlockDialog m_aTextFilter class TextFilter
@@ -740,13 +738,11 @@ sw/source/uibase/inc/regionsw.hxx:254
SwInsertSectionTabDialog m_nNotePageId sal_uInt16
sw/source/uibase/inc/regionsw.hxx:274
SwSectionPropertyTabDialog m_nNotePageId sal_uInt16
-sw/source/uibase/inc/swuicnttab.hxx:327
- SwTOXEntryTabPage sNoCharSortKey const class rtl::OUString
sw/source/uibase/inc/uivwimp.hxx:95
SwView_Impl xTmpSelDocSh const class SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:46
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard const class SolarMutexGuard
-toolkit/source/awt/stylesettings.cxx:90
+toolkit/source/awt/stylesettings.cxx:92
toolkit::StyleMethodGuard m_aGuard const class SolarMutexGuard
ucb/source/ucp/gio/gio_mount.hxx:46
OOoMountOperationClass parent_class GMountOperationClass
@@ -760,7 +756,7 @@ ucb/source/ucp/gio/gio_mount.hxx:52
OOoMountOperationClass _gtk_reserved4 void (*)(void)
unotools/source/config/defaultoptions.cxx:94
SvtDefaultOptions_Impl m_aUserDictionaryPath class rtl::OUString
-vcl/headless/svpgdi.cxx:314
+vcl/headless/svpgdi.cxx:310
(anonymous namespace)::SourceHelper aTmpBmp class SvpSalBitmap
vcl/inc/canvasbitmap.hxx:44
vcl::unotools::VclCanvasBitmap m_aAlpha ::Bitmap
@@ -802,18 +798,16 @@ vcl/inc/WidgetThemeLibrary.hxx:90
vcl::ControlDrawParameters eState enum ControlState
vcl/inc/WidgetThemeLibrary.hxx:106
vcl::WidgetThemeLibrary_t nSize uint32_t
-vcl/source/app/salvtables.cxx:1737
+vcl/source/app/salvtables.cxx:1926
SalInstanceEntry m_aTextFilter class (anonymous namespace)::WeldTextFilter
-vcl/source/app/salvtables.cxx:3269
+vcl/source/app/salvtables.cxx:3708
SalInstanceComboBoxWithEdit m_aTextFilter class (anonymous namespace)::WeldTextFilter
-vcl/source/gdi/jobset.cxx:35
- ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:36
+ ImplOldJobSetupData cDeviceName char [32]
+vcl/source/gdi/jobset.cxx:37
ImplOldJobSetupData cPortName char [32]
-vcl/unx/gtk3/gtk3gtkinst.cxx:2713
+vcl/unx/gtk3/gtk3gtkinst.cxx:2668
CrippledViewport viewport GtkViewport
-vcl/unx/gtk3/gtk3gtkinst.cxx:2961
- GtkInstanceScrolledWindow m_nHAdjustChangedSignalId gulong
vcl/unx/gtk/a11y/atkhypertext.cxx:29
(anonymous) atk_hyper_link const AtkHyperlink
vcl/unx/gtk/a11y/atkwrapper.hxx:49
diff --git a/compilerplugins/clang/unusedfields.readonly.results b/compilerplugins/clang/unusedfields.readonly.results
index 81b0aac8d739..65d5c3ffa4ca 100644
--- a/compilerplugins/clang/unusedfields.readonly.results
+++ b/compilerplugins/clang/unusedfields.readonly.results
@@ -100,9 +100,9 @@ cppcanvas/source/mtfrenderer/textaction.cxx:816
cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextFillColor const ::Color
cppcanvas/source/mtfrenderer/textaction.cxx:1646
cppcanvas::internal::(anonymous namespace)::OutlineAction maTextFillColor const ::Color
-cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:35
+cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:34
Mapping m_from uno::Environment
-cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:36
+cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:35
Mapping m_to uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:36
Proxy m_from css::uno::Environment
@@ -162,10 +162,8 @@ cui/source/options/optcolor.cxx:255
ColorConfigWindow_Impl aModuleOptions class SvtModuleOptions
cui/source/options/optpath.cxx:80
OptPath_Impl m_aDefOpt class SvtDefaultOptions
-cui/source/options/personalization.hxx:38
+cui/source/options/personalization.hxx:39
SvxPersonalizationTabPage m_vDefaultPersonaImages VclPtr<class PushButton> [6]
-cui/source/options/personalization.hxx:102
- SelectPersonaDialog m_vResultList VclPtr<class PushButton> [9]
dbaccess/source/core/api/RowSetBase.hxx:85
dbaccess::ORowSetBase m_aEmptyValue connectivity::ORowSetValue
dbaccess/source/core/api/RowSetBase.hxx:96
@@ -176,47 +174,47 @@ dbaccess/source/core/inc/ContentHelper.hxx:108
dbaccess::OContentHelper m_aErrorHelper const ::connectivity::SQLError
dbaccess/source/filter/hsqldb/parseschema.hxx:36
dbahsql::SchemaParser m_PrimaryKeys std::map<OUString, std::vector<OUString> >
-dbaccess/source/ui/control/tabletree.cxx:182
+dbaccess/source/ui/control/tabletree.cxx:181
dbaui::(anonymous namespace)::OViewSetter m_aEqualFunctor ::comphelper::UStringMixEqual
-dbaccess/source/ui/dlg/advancedsettings.hxx:41
+dbaccess/source/ui/dlg/advancedsettings.hxx:39
dbaui::SpecialSettingsPage m_xIsSQL92Check std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:42
+dbaccess/source/ui/dlg/advancedsettings.hxx:40
dbaui::SpecialSettingsPage m_xAppendTableAlias std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:43
+dbaccess/source/ui/dlg/advancedsettings.hxx:41
dbaui::SpecialSettingsPage m_xAsBeforeCorrelationName std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:44
+dbaccess/source/ui/dlg/advancedsettings.hxx:42
dbaui::SpecialSettingsPage m_xEnableOuterJoin std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:45
+dbaccess/source/ui/dlg/advancedsettings.hxx:43
dbaui::SpecialSettingsPage m_xIgnoreDriverPrivileges std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:46
+dbaccess/source/ui/dlg/advancedsettings.hxx:44
dbaui::SpecialSettingsPage m_xParameterSubstitution std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:47
+dbaccess/source/ui/dlg/advancedsettings.hxx:45
dbaui::SpecialSettingsPage m_xSuppressVersionColumn std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:48
+dbaccess/source/ui/dlg/advancedsettings.hxx:46
dbaui::SpecialSettingsPage m_xCatalog std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:49
+dbaccess/source/ui/dlg/advancedsettings.hxx:47
dbaui::SpecialSettingsPage m_xSchema std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:50
+dbaccess/source/ui/dlg/advancedsettings.hxx:48
dbaui::SpecialSettingsPage m_xIndexAppendix std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:51
+dbaccess/source/ui/dlg/advancedsettings.hxx:49
dbaui::SpecialSettingsPage m_xDosLineEnds std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:52
+dbaccess/source/ui/dlg/advancedsettings.hxx:50
dbaui::SpecialSettingsPage m_xCheckRequiredFields std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:53
+dbaccess/source/ui/dlg/advancedsettings.hxx:51
dbaui::SpecialSettingsPage m_xIgnoreCurrency std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:54
+dbaccess/source/ui/dlg/advancedsettings.hxx:52
dbaui::SpecialSettingsPage m_xEscapeDateTime std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:55
+dbaccess/source/ui/dlg/advancedsettings.hxx:53
dbaui::SpecialSettingsPage m_xPrimaryKeySupport std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/advancedsettings.hxx:56
+dbaccess/source/ui/dlg/advancedsettings.hxx:54
dbaui::SpecialSettingsPage m_xRespectDriverResultSetType std::unique_ptr<weld::CheckButton>
dbaccess/source/ui/inc/charsetlistbox.hxx:44
dbaui::CharSetListBox m_aCharSets class dbaui::OCharsetDisplay
dbaccess/source/ui/inc/WCopyTable.hxx:269
dbaui::OCopyTableWizard m_aLocale css::lang::Locale
-drawinglayer/source/processor2d/vclprocessor2d.hxx:83
+drawinglayer/source/processor2d/vclprocessor2d.hxx:84
drawinglayer::processor2d::VclProcessor2D maDrawinglayerOpt const class SvtOptionsDrawinglayer
-editeng/source/editeng/impedit.hxx:449
+editeng/source/editeng/impedit.hxx:451
ImpEditEngine maColorConfig svtools::ColorConfig
embeddedobj/source/inc/commonembobj.hxx:108
OCommonEmbeddedObject m_aClassName class rtl::OUString
@@ -266,7 +264,7 @@ filter/source/graphicfilter/iras/iras.cxx:53
RASReader mnRepCount sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:52
TGAFileFooter nSignature sal_uInt32 [4]
-filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:139
+filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:144
XMLFilterSettingsDialog maModuleOpt class SvtModuleOptions
framework/inc/dispatch/dispatchprovider.hxx:81
framework::DispatchProvider m_aProtocolHandlerCache class framework::HandlerCache
@@ -278,7 +276,7 @@ framework/inc/xml/menudocumenthandler.hxx:160
framework::OReadMenuHandler m_bMenuPopupMode _Bool
framework/inc/xml/menudocumenthandler.hxx:190
framework::OReadMenuPopupHandler m_bMenuMode _Bool
-framework/source/fwe/classes/addonsoptions.cxx:302
+framework/source/fwe/classes/addonsoptions.cxx:304
framework::AddonsOptions_Impl m_aEmptyAddonToolBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
i18npool/inc/textconversion.hxx:80
i18npool::(anonymous) code sal_Unicode
@@ -354,7 +352,7 @@ include/svl/ondemand.hxx:55
OnDemandLocaleDataWrapper aSysLocale class SvtSysLocale
include/svtools/editsyntaxhighlighter.hxx:32
MultiLineEditSyntaxHighlight m_aColorConfig const svtools::ColorConfig
-include/svx/dialcontrol.hxx:111
+include/svx/dialcontrol.hxx:113
svx::DialControl::DialControl_Impl mnLinkedFieldValueMultiplyer sal_Int32
include/svx/sdr/overlay/overlayanimatedbitmapex.hxx:51
sdr::overlay::OverlayAnimatedBitmapEx mbOverlayState _Bool
@@ -372,12 +370,12 @@ include/test/sheet/xdatapilottable.hxx:31
apitest::XDataPilotTable xCellForChange css::uno::Reference<css::table::XCell>
include/test/sheet/xdatapilottable.hxx:32
apitest::XDataPilotTable xCellForCheck css::uno::Reference<css::table::XCell>
-include/test/sheet/xnamedranges.hxx:38
+include/test/sheet/xnamedranges.hxx:49
apitest::XNamedRanges xSheet css::uno::Reference<css::sheet::XSpreadsheet>
include/test/sheet/xspreadsheets2.hxx:46
apitest::XSpreadsheets2 xDocument css::uno::Reference<css::sheet::XSpreadsheetDocument>
include/unoidl/unoidl.hxx:443
- unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /media/noel/disk2/libo6/include/unoidl/unoidl.hxx:443:5)
+ unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /media/noel/disk2/libo4/include/unoidl/unoidl.hxx:443:5)
include/unoidl/unoidl.hxx:444
unoidl::ConstantValue::(anonymous) booleanValue _Bool
include/unoidl/unoidl.hxx:445
@@ -432,13 +430,13 @@ oox/qa/unit/vba_compression.cxx:71
TestVbaCompression m_directories const test::Directories
oox/source/drawingml/chart/objectformatter.cxx:711
oox::drawingml::chart::ObjectFormatterData maFromLocale const struct com::sun::star::lang::Locale
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:228
+oox/source/drawingml/diagram/diagramlayoutatoms.hxx:232
oox::drawingml::ChooseAtom maEmptyChildren const std::vector<LayoutAtomPtr>
-registry/source/reflwrit.cxx:141
+registry/source/reflwrit.cxx:140
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b1 sal_uInt32
-registry/source/reflwrit.cxx:142
+registry/source/reflwrit.cxx:141
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b2 sal_uInt32
-registry/source/reflwrit.cxx:182
+registry/source/reflwrit.cxx:181
CPInfo::(anonymous) aUik struct RTUik *
reportdesign/source/ui/inc/ColorListener.hxx:35
rptui::OColorListener m_aColorConfig const svtools::ColorConfig
@@ -463,7 +461,7 @@ sal/rtl/uuid.cxx:65
sc/inc/compiler.hxx:126
ScRawToken::(anonymous union)::(anonymous) eItem const class ScTableRefToken::Item
sc/inc/compiler.hxx:127
- ScRawToken::(anonymous) table const struct (anonymous struct at /media/noel/disk2/libo6/sc/inc/compiler.hxx:124:9)
+ ScRawToken::(anonymous) table const struct (anonymous struct at /media/noel/disk2/libo4/sc/inc/compiler.hxx:124:9)
sc/inc/compiler.hxx:132
ScRawToken::(anonymous) pMat class ScMatrix *const
sc/inc/formulagroup.hxx:39
@@ -484,7 +482,7 @@ sc/source/filter/inc/commentsbuffer.hxx:42
oox::xls::CommentModel maAnchor const css::awt::Rectangle
sc/source/filter/inc/htmlpars.hxx:56
ScHTMLStyles maEmpty const class rtl::OUString
-sc/source/filter/inc/namebuff.hxx:80
+sc/source/filter/inc/namebuff.hxx:79
RangeNameBufferWK3::Entry nAbsInd sal_uInt16
sc/source/filter/inc/qproform.hxx:55
QProToSc mnAddToken const struct TokenId
@@ -524,29 +522,33 @@ sc/source/ui/vba/vbaworksheet.hxx:50
ScVbaWorksheet mxButtons ::rtl::Reference<ScVbaSheetObjectsBase> [2]
sd/inc/Outliner.hxx:273
SdOutliner mpFirstObj class SdrObject *
-sd/inc/sdmod.hxx:116
- SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
sd/inc/sdmod.hxx:117
+ SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
+sd/inc/sdmod.hxx:118
SdModule gImplDrawPropertySetInfoCache SdExtPropertySetInfoCache
-sd/source/core/CustomAnimationCloner.cxx:70
- sd::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
sd/source/core/CustomAnimationCloner.cxx:71
+ sd::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
+sd/source/core/CustomAnimationCloner.cxx:72
sd::CustomAnimationClonerImpl maCloneNodeVector std::vector<Reference<XAnimationNode> >
-sd/source/ui/sidebar/MasterPageContainer.cxx:148
+sd/source/ui/inc/sdtreelb.hxx:309
+ SdPageObjsTLV m_bLinkableSelected _Bool
+sd/source/ui/inc/sdtreelb.hxx:310
+ SdPageObjsTLV m_bShowAllShapes _Bool
+sd/source/ui/sidebar/MasterPageContainer.cxx:152
sd::sidebar::MasterPageContainer::Implementation maLargePreviewBeingCreated class Image
-sd/source/ui/sidebar/MasterPageContainer.cxx:149
+sd/source/ui/sidebar/MasterPageContainer.cxx:153
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewBeingCreated class Image
-sd/source/ui/sidebar/MasterPageContainer.cxx:154
+sd/source/ui/sidebar/MasterPageContainer.cxx:158
sd::sidebar::MasterPageContainer::Implementation maLargePreviewNotAvailable class Image
-sd/source/ui/sidebar/MasterPageContainer.cxx:155
+sd/source/ui/sidebar/MasterPageContainer.cxx:159
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewNotAvailable class Image
-sd/source/ui/slideshow/showwindow.hxx:103
+sd/source/ui/slideshow/showwindow.hxx:101
sd::ShowWindow mbMouseCursorHidden _Bool
sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx:143
sd::slidesorter::cache::PageCacheManager::RecentlyUsedPageCaches maMap std::map<key_type, mapped_type>
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:97
sd::slidesorter::controller::Animator maElapsedTime const ::canvas::tools::ElapsedTime
-sd/source/ui/table/TableDesignPane.hxx:94
+sd/source/ui/table/TableDesignPane.hxx:90
sd::TableDesignWidget m_aCheckBoxes VclPtr<class CheckBox> [6]
sdext/source/pdfimport/inc/pdfihelper.hxx:101
pdfi::GraphicsContext BlendMode sal_Int8
@@ -556,13 +558,13 @@ sfx2/source/appl/lnkbase2.cxx:96
sfx2::ImplDdeItem pLink class sfx2::SvBaseLink *
sfx2/source/inc/versdlg.hxx:85
SfxCmisVersionsDialog m_xVersionBox std::unique_ptr<weld::TreeView>
-slideshow/source/engine/slideshowimpl.cxx:153
+slideshow/source/engine/slideshowimpl.cxx:156
(anonymous namespace)::FrameSynchronization maTimer const canvas::tools::ElapsedTime
sot/source/sdstor/ucbstorage.cxx:403
UCBStorageStream_Impl m_aKey const class rtl::OString
-starmath/source/view.cxx:861
+starmath/source/view.cxx:865
SmViewShell_Impl aOpts const class SvtMiscOptions
-store/source/storbios.cxx:59
+store/source/storbios.cxx:57
OStoreSuperBlock m_aMarked OStoreSuperBlock::L
svl/source/crypto/cryptosign.cxx:282
(anonymous namespace)::(anonymous) status SECItem
@@ -572,7 +574,7 @@ svl/source/misc/strmadpt.cxx:55
SvDataPipe_Impl::Page m_aBuffer sal_Int8 [1]
svl/source/uno/pathservice.cxx:36
PathService m_aOptions const class SvtPathOptions
-svtools/source/control/tabbar.cxx:210
+svtools/source/control/tabbar.cxx:212
ImplTabBarItem maHelpId const class rtl::OString
svtools/source/dialogs/insdlg.cxx:46
OleObjectDescriptor cbSize const sal_uInt32
@@ -590,9 +592,9 @@ svtools/source/dialogs/insdlg.cxx:52
OleObjectDescriptor dwFullUserTypeName sal_uInt32
svtools/source/dialogs/insdlg.cxx:53
OleObjectDescriptor dwSrcOfCopy sal_uInt32
-svtools/source/table/gridtablerenderer.cxx:69
- svt::table::CachedSortIndicator m_sortAscending class BitmapEx
svtools/source/table/gridtablerenderer.cxx:70
+ svt::table::CachedSortIndicator m_sortAscending class BitmapEx
+svtools/source/table/gridtablerenderer.cxx:71
svt::table::CachedSortIndicator m_sortDescending class BitmapEx
svx/inc/sdr/overlay/overlayrectangle.hxx:44
sdr::overlay::OverlayRectangle mbOverlayState _Bool
@@ -600,9 +602,9 @@ svx/source/inc/datanavi.hxx:218
svxform::XFormsPage m_aMethodString const class svxform::MethodString
svx/source/inc/datanavi.hxx:219
svxform::XFormsPage m_aReplaceString const class svxform::ReplaceString
-svx/source/inc/datanavi.hxx:540
+svx/source/inc/datanavi.hxx:529
svxform::AddSubmissionDialog m_aMethodString const class svxform::MethodString
-svx/source/inc/datanavi.hxx:541
+svx/source/inc/datanavi.hxx:530
svxform::AddSubmissionDialog m_aReplaceString const class svxform::ReplaceString
svx/source/inc/gridcell.hxx:526
DbPatternField m_pValueFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
@@ -610,11 +612,13 @@ svx/source/inc/gridcell.hxx:527
DbPatternField m_pPaintFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
svx/source/svdraw/svdpdf.hxx:174
ImpSdrPdfImport maDash const class XDash
+svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:104
+ textconversiondlgs::DictionaryList m_nSortColumnIndex sal_uInt16
sw/inc/acmplwrd.hxx:42
SwAutoCompleteWord m_LookupTree const editeng::Trie
sw/inc/calc.hxx:197
SwCalc m_aSysLocale const class SvtSysLocale
-sw/inc/hints.hxx:223
+sw/inc/hints.hxx:230
SwAttrSetChg m_bDelSet const _Bool
sw/inc/shellio.hxx:147
SwReader pStg const tools::SvRef<SotStorage>
@@ -632,9 +636,9 @@ sw/source/core/access/accmap.cxx:586
SwAccessibleEventMap_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:626
SwAccessibleSelectedParas_Impl maMap std::map<key_type, mapped_type, key_compare>
-sw/source/core/doc/swstylemanager.cxx:59
+sw/source/core/doc/swstylemanager.cxx:58
SwStyleManager aAutoCharPool class StylePool
-sw/source/core/doc/swstylemanager.cxx:60
+sw/source/core/doc/swstylemanager.cxx:59
SwStyleManager aAutoParaPool class StylePool
sw/source/core/doc/tblrwcl.cxx:83
CpyTabFrame::(anonymous) nSize SwTwips
@@ -644,9 +648,9 @@ sw/source/core/text/atrhndl.hxx:48
SwAttrHandler::SwAttrStack m_pInitialArray class SwTextAttr *[3]
sw/source/filter/inc/rtf.hxx:32
RTFSurround::(anonymous) nVal sal_uInt8
-sw/source/ui/dbui/dbinsdlg.cxx:117
+sw/source/ui/dbui/dbinsdlg.cxx:116
DB_Column::(anonymous) pText class rtl::OUString *const
-sw/source/ui/dbui/dbinsdlg.cxx:119
+sw/source/ui/dbui/dbinsdlg.cxx:118
DB_Column::(anonymous) nFormat const sal_uInt32
sw/source/uibase/dbui/mmconfigitem.cxx:107
SwMailMergeConfigItem_Impl m_aFemaleGreetingLines std::vector<OUString>
@@ -656,7 +660,7 @@ sw/source/uibase/dbui/mmconfigitem.cxx:111
SwMailMergeConfigItem_Impl m_aNeutralGreetingLines std::vector<OUString>
sw/source/uibase/inc/fldmgr.hxx:78
SwInsertField_Data m_aDBDataSource const css::uno::Any
-toolkit/source/awt/vclxtoolkit.cxx:434
+toolkit/source/awt/vclxtoolkit.cxx:435
(anonymous namespace)::VCLXToolkit mxSelection css::uno::Reference<css::datatransfer::clipboard::XClipboard>
ucb/source/ucp/gio/gio_mount.hxx:46
OOoMountOperationClass parent_class GMountOperationClass
@@ -684,9 +688,9 @@ unoidl/source/sourceprovider-scanner.hxx:249
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseInterfaces std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:250
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseInterfaces std::vector<unoidl::AnnotatedReference>
-unoidl/source/unoidl-read.cxx:148
+unoidl/source/unoidl-read.cxx:146
(anonymous namespace)::Entity dependencies std::set<OUString>
-unoidl/source/unoidl-read.cxx:149
+unoidl/source/unoidl-read.cxx:147
(anonymous namespace)::Entity interfaceDependencies std::set<OUString>
unoidl/source/unoidlprovider.cxx:86
unoidl::detail::(anonymous namespace)::Memory16 byte const unsigned char [2]
@@ -714,17 +718,17 @@ vcl/inc/salwtype.hxx:202
SalSurroundingTextSelectionChangeEvent mnEnd const sal_uLong
vcl/inc/salwtype.hxx:208
SalQueryCharPositionEvent mnCharPos sal_uLong
-vcl/inc/svdata.hxx:275
+vcl/inc/svdata.hxx:277
ImplSVNWFData mnStatusBarLowerRightOffset int
-vcl/inc/svdata.hxx:281
+vcl/inc/svdata.hxx:283
ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool
-vcl/inc/svdata.hxx:291
+vcl/inc/svdata.hxx:293
ImplSVNWFData mbCenteredTabs _Bool
-vcl/inc/svdata.hxx:292
- ImplSVNWFData mbNoActiveTabTextRaise _Bool
vcl/inc/svdata.hxx:294
+ ImplSVNWFData mbNoActiveTabTextRaise _Bool
+vcl/inc/svdata.hxx:296
ImplSVNWFData mbProgressNeedsErase _Bool
-vcl/inc/svdata.hxx:303
+vcl/inc/svdata.hxx:305
ImplSVNWFData mbRolloverMenubar _Bool
vcl/inc/toolbox.h:108
vcl::ToolBoxLayoutData m_aLineItemIds std::vector<sal_uInt16>
@@ -902,51 +906,49 @@ vcl/source/fontsubset/sft.cxx:1049
vcl::_subHeader2 entryCount const sal_uInt16
vcl/source/fontsubset/sft.cxx:1050
vcl::_subHeader2 idDelta const sal_uInt16
-vcl/source/gdi/dibtools.cxx:52
- (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
vcl/source/gdi/dibtools.cxx:53
- (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
+ (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
vcl/source/gdi/dibtools.cxx:54
+ (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
+vcl/source/gdi/dibtools.cxx:55
(anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30
-vcl/source/gdi/dibtools.cxx:65
- (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:66
- (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
+ (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:67
+ (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
+vcl/source/gdi/dibtools.cxx:68
(anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ
-vcl/source/gdi/dibtools.cxx:107
- (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
vcl/source/gdi/dibtools.cxx:108
- (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
+ (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
vcl/source/gdi/dibtools.cxx:109
- (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
+ (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
vcl/source/gdi/dibtools.cxx:110
+ (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
+vcl/source/gdi/dibtools.cxx:111
(anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32
-vcl/source/gdi/dibtools.cxx:112
- (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
vcl/source/gdi/dibtools.cxx:113
- (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
+ (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
vcl/source/gdi/dibtools.cxx:114
- (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
+ (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
vcl/source/gdi/dibtools.cxx:115
+ (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
+vcl/source/gdi/dibtools.cxx:116
(anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32
-vcl/source/gdi/dibtools.cxx:117
- (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
vcl/source/gdi/dibtools.cxx:118
- (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
+ (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
vcl/source/gdi/dibtools.cxx:119
+ (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
+vcl/source/gdi/dibtools.cxx:120
(anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32
vcl/source/gdi/pdfwriter_impl.hxx:280
vcl::PDFWriterImpl::TransparencyEmit m_pSoftMaskStream std::unique_ptr<SvMemoryStream>
-vcl/source/treelist/headbar.cxx:38
+vcl/source/treelist/headbar.cxx:41
ImplHeadItem maHelpId const class rtl::OString
-vcl/source/treelist/headbar.cxx:39
+vcl/source/treelist/headbar.cxx:42
ImplHeadItem maImage const class Image
vcl/source/window/menuitemlist.hxx:58
MenuItemData aAccessibleName const class rtl::OUString
-vcl/unx/generic/print/bitmap_gfx.cxx:67
- psp::HexEncoder mpFileBuffer sal_Char [16400]
-vcl/unx/gtk3/gtk3gtkinst.cxx:1157
+vcl/unx/gtk3/gtk3gtkinst.cxx:1165
out gpointer *
vcl/unx/gtk/a11y/atkwrapper.hxx:49
AtkObjectWrapper aParent const AtkObject
@@ -982,5 +984,5 @@ xmloff/source/chart/SchXMLChartContext.hxx:58
SeriesDefaultsAndStyles maPercentageErrorDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:59
SeriesDefaultsAndStyles maErrorMarginDefault const css::uno::Any
-xmloff/source/core/xmlexp.cxx:260
+xmloff/source/core/xmlexp.cxx:263
SvXMLExport_Impl maSaveOptions const class SvtSaveOptions
diff --git a/compilerplugins/clang/unusedfields.untouched.results b/compilerplugins/clang/unusedfields.untouched.results
index f85cda0376a4..7acea1bf9313 100644
--- a/compilerplugins/clang/unusedfields.untouched.results
+++ b/compilerplugins/clang/unusedfields.untouched.results
@@ -5,9 +5,9 @@ avmedia/source/vlc/wrapper/Types.hxx:44
avmedia/source/vlc/wrapper/Types.hxx:45
libvlc_event_t::(anonymous union)::(anonymous) dummy2 const char *
avmedia/source/vlc/wrapper/Types.hxx:46
- libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:43:7)
+ libvlc_event_t::(anonymous) padding struct (anonymous struct at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:43:7)
avmedia/source/vlc/wrapper/Types.hxx:47
- libvlc_event_t u union (anonymous union at /media/noel/disk2/libo6/avmedia/source/vlc/wrapper/Types.hxx:41:5)
+ libvlc_event_t u union (anonymous union at /media/noel/disk2/libo4/avmedia/source/vlc/wrapper/Types.hxx:41:5)
avmedia/source/vlc/wrapper/Types.hxx:53
libvlc_track_description_t psz_name char *
basctl/source/inc/dlged.hxx:122
@@ -20,6 +20,8 @@ canvas/source/vcl/canvasbitmap.hxx:117
vclcanvas::CanvasBitmap mxDevice css::uno::Reference<css::rendering::XGraphicDevice>
canvas/source/vcl/impltools.hxx:117
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
+canvas/workben/canvasdemo.cxx:82
+ DemoRenderer maColorWhite uno::Sequence<double>
chart2/source/controller/dialogs/res_DataLabel.hxx:86
chart::DataLabelResources m_xDC_Dial std::unique_ptr<weld::CustomWeld>
chart2/source/controller/dialogs/tp_AxisLabel.hxx:60
@@ -44,27 +46,27 @@ connectivity/source/drivers/evoab2/NStatement.hxx:57
connectivity::evoab::FieldSort bAscending _Bool
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
-cppu/source/threadpool/threadpool.cxx:355
+cppu/source/threadpool/threadpool.cxx:354
_uno_ThreadPool dummy sal_Int32
-cppu/source/typelib/typelib.cxx:59
+cppu/source/typelib/typelib.cxx:56
AlignSize_Impl nInt16 sal_Int16
-cui/source/dialogs/colorpicker.cxx:714
+cui/source/dialogs/colorpicker.cxx:715
cui::ColorPickerDialog m_xColorField std::unique_ptr<weld::CustomWeld>
-cui/source/dialogs/colorpicker.cxx:716
+cui/source/dialogs/colorpicker.cxx:717
cui::ColorPickerDialog m_xColorPreview std::unique_ptr<weld::CustomWeld>
cui/source/inc/align.hxx:92
svx::AlignmentTabPage m_xBoxDirection std::unique_ptr<weld::Widget>
cui/source/inc/cfg.hxx:573
SvxNewToolbarDialog m_xBtnOK std::unique_ptr<weld::Button>
-cui/source/inc/cuicharmap.hxx:99
- SvxCharacterMap m_xShowChar std::unique_ptr<weld::CustomWeld>
cui/source/inc/cuicharmap.hxx:100
- SvxCharacterMap m_xRecentCharView std::unique_ptr<weld::CustomWeld> [16]
+ SvxCharacterMap m_xShowChar std::unique_ptr<weld::CustomWeld>
cui/source/inc/cuicharmap.hxx:101
+ SvxCharacterMap m_xRecentCharView std::unique_ptr<weld::CustomWeld> [16]
+cui/source/inc/cuicharmap.hxx:102
SvxCharacterMap m_xFavCharView std::unique_ptr<weld::CustomWeld> [16]
-cui/source/inc/cuicharmap.hxx:103
+cui/source/inc/cuicharmap.hxx:104
SvxCharacterMap m_xShowSetArea std::unique_ptr<weld::CustomWeld>
-cui/source/inc/cuicharmap.hxx:105
+cui/source/inc/cuicharmap.hxx:106
SvxCharacterMap m_xSearchSetArea std::unique_ptr<weld::CustomWeld>
cui/source/inc/cuigaldlg.hxx:251
TPGalleryThemeProperties m_xWndPreview std::unique_ptr<weld::CustomWeld>
@@ -72,9 +74,9 @@ cui/source/inc/cuigrfflt.hxx:79
GraphicFilterDialog mxPreview std::unique_ptr<weld::CustomWeld>
cui/source/inc/cuigrfflt.hxx:175
GraphicFilterEmboss mxCtlLight std::unique_ptr<weld::CustomWeld>
-cui/source/inc/cuitabarea.hxx:706
- SvxColorTabPage m_xCtlPreviewOld std::unique_ptr<weld::CustomWeld>
cui/source/inc/cuitabarea.hxx:707
+ SvxColorTabPage m_xCtlPreviewOld std::unique_ptr<weld::CustomWeld>
+cui/source/inc/cuitabarea.hxx:708
SvxColorTabPage m_xCtlPreviewNew std::unique_ptr<weld::CustomWeld>
cui/source/inc/FontFeaturesDialog.hxx:51
cui::FontFeaturesDialog m_xContentWindow std::unique_ptr<weld::ScrolledWindow>
@@ -102,21 +104,23 @@ cui/source/inc/transfrm.hxx:187
SvxAngleTabPage m_xCtlRect std::unique_ptr<weld::CustomWeld>
cui/source/inc/transfrm.hxx:190
SvxAngleTabPage m_xCtlAngle std::unique_ptr<weld::CustomWeld>
+dbaccess/source/inc/dsntypes.hxx:107
+ dbaccess::ODsnTypeCollection m_xContext css::uno::Reference<css::uno::XComponentContext>
dbaccess/source/sdbtools/inc/connectiondependent.hxx:116
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
-dbaccess/source/ui/dlg/advancedsettings.hxx:97
+dbaccess/source/ui/dlg/advancedsettings.hxx:95
dbaui::GeneratedValuesPage m_xAutoIncrementLabel std::unique_ptr<weld::Label>
-dbaccess/source/ui/dlg/advancedsettings.hxx:99
+dbaccess/source/ui/dlg/advancedsettings.hxx:97
dbaui::GeneratedValuesPage m_xAutoRetrievingLabel std::unique_ptr<weld::Label>
-dbaccess/source/ui/dlg/detailpages.hxx:66
+dbaccess/source/ui/dlg/detailpages.hxx:65
dbaui::OCommonBehaviourTabPage m_xAutoRetrievingEnabled std::unique_ptr<weld::CheckButton>
-dbaccess/source/ui/dlg/detailpages.hxx:67
+dbaccess/source/ui/dlg/detailpages.hxx:66
dbaui::OCommonBehaviourTabPage m_xAutoIncrementLabel std::unique_ptr<weld::Label>
-dbaccess/source/ui/dlg/detailpages.hxx:68
+dbaccess/source/ui/dlg/detailpages.hxx:67
dbaui::OCommonBehaviourTabPage m_xAutoIncrement std::unique_ptr<weld::Entry>
-dbaccess/source/ui/dlg/detailpages.hxx:69
+dbaccess/source/ui/dlg/detailpages.hxx:68
dbaui::OCommonBehaviourTabPage m_xAutoRetrievingLabel std::unique_ptr<weld::Label>
-dbaccess/source/ui/dlg/detailpages.hxx:70
+dbaccess/source/ui/dlg/detailpages.hxx:69
dbaui::OCommonBehaviourTabPage m_xAutoRetrieving std::unique_ptr<weld::Entry>
emfio/source/emfuno/xemfparser.cxx:61
emfio::emfreader::XEmfParser context_ uno::Reference<uno::XComponentContext>
@@ -124,8 +128,6 @@ extensions/source/scanner/scanner.hxx:44
ScannerManager maProtector osl::Mutex
filter/source/pdf/impdialog.hxx:178
ImpPDFTabGeneralPage mxSelectedSheets std::unique_ptr<weld::Label>
-filter/source/svg/svgfilter.hxx:224
- SVGFilter mpSdrModel class SdrModel *
filter/source/xsltdialog/xmlfiltertabpagebasic.hxx:36
XMLFilterTabPageBasic m_xContainer std::unique_ptr<weld::Widget>
filter/source/xsltdialog/xmlfiltertabpagexslt.hxx:48
@@ -183,18 +185,18 @@ include/sfx2/msg.hxx:135
include/sfx2/msg.hxx:135
SfxType4 pType const std::type_info *
include/sfx2/msg.hxx:136
+ SfxType5 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
+include/sfx2/msg.hxx:136
SfxType5 aAttrib struct SfxTypeAttrib [5]
include/sfx2/msg.hxx:136
SfxType5 pType const std::type_info *
include/sfx2/msg.hxx:136
- SfxType5 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
-include/sfx2/msg.hxx:136
SfxType5 nAttribs sal_uInt16
include/sfx2/msg.hxx:137
- SfxType6 pType const std::type_info *
-include/sfx2/msg.hxx:137
SfxType6 nAttribs sal_uInt16
include/sfx2/msg.hxx:137
+ SfxType6 pType const std::type_info *
+include/sfx2/msg.hxx:137
SfxType6 aAttrib struct SfxTypeAttrib [6]
include/sfx2/msg.hxx:137
SfxType6 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
@@ -207,13 +209,13 @@ include/sfx2/msg.hxx:138
include/sfx2/msg.hxx:138
SfxType7 pType const std::type_info *
include/sfx2/msg.hxx:139
+ SfxType8 aAttrib struct SfxTypeAttrib [8]
+include/sfx2/msg.hxx:139
SfxType8 pType const std::type_info *
include/sfx2/msg.hxx:139
SfxType8 nAttribs sal_uInt16
include/sfx2/msg.hxx:139
SfxType8 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
-include/sfx2/msg.hxx:139
- SfxType8 aAttrib struct SfxTypeAttrib [8]
include/sfx2/msg.hxx:140
SfxType10 pType const std::type_info *
include/sfx2/msg.hxx:140
@@ -223,28 +225,28 @@ include/sfx2/msg.hxx:140
include/sfx2/msg.hxx:140
SfxType10 aAttrib struct SfxTypeAttrib [10]
include/sfx2/msg.hxx:141
- SfxType11 nAttribs sal_uInt16
-include/sfx2/msg.hxx:141
SfxType11 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:141
+ SfxType11 nAttribs sal_uInt16
+include/sfx2/msg.hxx:141
SfxType11 pType const std::type_info *
include/sfx2/msg.hxx:141
SfxType11 aAttrib struct SfxTypeAttrib [11]
include/sfx2/msg.hxx:143
- SfxType13 pType const std::type_info *
+ SfxType13 aAttrib struct SfxTypeAttrib [13]
include/sfx2/msg.hxx:143
SfxType13 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:143
- SfxType13 aAttrib struct SfxTypeAttrib [13]
-include/sfx2/msg.hxx:143
SfxType13 nAttribs sal_uInt16
-include/sfx2/msg.hxx:144
- SfxType14 nAttribs sal_uInt16
+include/sfx2/msg.hxx:143
+ SfxType13 pType const std::type_info *
include/sfx2/msg.hxx:144
SfxType14 pType const std::type_info *
include/sfx2/msg.hxx:144
SfxType14 aAttrib struct SfxTypeAttrib [14]
include/sfx2/msg.hxx:144
+ SfxType14 nAttribs sal_uInt16
+include/sfx2/msg.hxx:144
SfxType14 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:145
SfxType16 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
@@ -255,12 +257,12 @@ include/sfx2/msg.hxx:145
include/sfx2/msg.hxx:145
SfxType16 aAttrib struct SfxTypeAttrib [16]
include/sfx2/msg.hxx:146
+ SfxType17 nAttribs sal_uInt16
+include/sfx2/msg.hxx:146
SfxType17 pType const std::type_info *
include/sfx2/msg.hxx:146
SfxType17 aAttrib struct SfxTypeAttrib [17]
include/sfx2/msg.hxx:146
- SfxType17 nAttribs sal_uInt16
-include/sfx2/msg.hxx:146
SfxType17 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:147
SfxType23 nAttribs sal_uInt16
@@ -270,13 +272,13 @@ include/sfx2/msg.hxx:147
SfxType23 pType const std::type_info *
include/sfx2/msg.hxx:147
SfxType23 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
-include/svtools/ctrlbox.hxx:301
+include/svtools/ctrlbox.hxx:300
SvtLineListBox m_xLineSetWin std::unique_ptr<weld::CustomWeld>
-include/svtools/genericunodialog.hxx:218
+include/svtools/genericunodialog.hxx:216
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
-include/svtools/PlaceEditDialog.hxx:48
+include/svtools/PlaceEditDialog.hxx:45
PlaceEditDialog m_xBTCancel std::unique_ptr<weld::Button>
-include/svtools/unoevent.hxx:162
+include/svtools/unoevent.hxx:163
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svtools/wizardmachine.hxx:119
svt::OWizardPage m_xContainer std::unique_ptr<weld::Container>
@@ -286,9 +288,11 @@ include/svx/colorwindow.hxx:133
ColorWindow mxRecentColorSetWin std::unique_ptr<weld::CustomWeld>
include/svx/hdft.hxx:86
SvxHFPage m_xBspWin std::unique_ptr<weld::CustomWeld>
+include/vcl/filter/PngImageReader.hxx:24
+ vcl::PngImageReader mxStatusIndicator css::uno::Reference<css::task::XStatusIndicator>
include/vcl/font/Feature.hxx:99
vcl::font::Feature m_eType const enum vcl::font::FeatureType
-include/vcl/uitest/uiobject.hxx:271
+include/vcl/uitest/uiobject.hxx:272
TabPageUIObject mxTabPage VclPtr<class TabPage>
include/xmloff/formlayerexport.hxx:173
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
@@ -398,18 +402,18 @@ sal/qa/osl/security/osl_Security.cxx:191
osl_Security::getConfigDir bRes1 _Bool
sc/qa/unit/ucalc_column.cxx:104
aInputs aName const char *
-sc/source/core/data/document.cxx:1237
+sc/source/core/data/document.cxx:1239
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch const sc::AutoCalcSwitch
-sc/source/core/data/document.cxx:1238
+sc/source/core/data/document.cxx:1240
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk const class ScBulkBroadcast
-sc/source/filter/html/htmlpars.cxx:3030
+sc/source/filter/html/htmlpars.cxx:3002
(anonymous namespace)::CSSHandler::MemStr mp const char *
-sc/source/filter/html/htmlpars.cxx:3031
+sc/source/filter/html/htmlpars.cxx:3003
(anonymous namespace)::CSSHandler::MemStr mn size_t
-sc/source/filter/inc/namebuff.hxx:79
- RangeNameBufferWK3::Entry aScAbsName const class rtl::OUString
sc/source/filter/inc/sheetdatacontext.hxx:62
oox::xls::SheetDataContext aReleaser const class SolarMutexReleaser
+sc/source/ui/inc/colorformat.hxx:33
+ ScDataBarSettingsDlg mxBtnCancel std::unique_ptr<weld::Button>
sc/source/ui/inc/crdlg.hxx:32
ScColOrRowDlg m_xBtnRows std::unique_ptr<weld::RadioButton>
sc/source/ui/inc/delcodlg.hxx:39
@@ -418,25 +422,31 @@ sc/source/ui/inc/docsh.hxx:454
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
sc/source/ui/inc/instbdlg.hxx:66
ScInsertTableDlg m_xBtnBehind std::unique_ptr<weld::RadioButton>
-sd/source/ui/animations/CustomAnimationDialog.cxx:1745
+sc/source/ui/inc/pvfundlg.hxx:83
+ ScDPFunctionDlg mxBtnOk std::unique_ptr<weld::Button>
+sc/source/ui/inc/pvfundlg.hxx:123
+ ScDPSubtotalDlg mxBtnOk std::unique_ptr<weld::Button>
+sc/source/ui/inc/scuiimoptdlg.hxx:62
+ ScImportOptionsDlg m_xBtnOk std::unique_ptr<weld::Button>
+sd/source/ui/animations/CustomAnimationDialog.cxx:1746
sd::CustomAnimationEffectTabPage mxContainer std::unique_ptr<weld::Container>
-sd/source/ui/animations/CustomAnimationDialog.cxx:1751
+sd/source/ui/animations/CustomAnimationDialog.cxx:1752
sd::CustomAnimationEffectTabPage mxFTSound std::unique_ptr<weld::Label>
-sd/source/ui/animations/CustomAnimationDialog.cxx:1754
+sd/source/ui/animations/CustomAnimationDialog.cxx:1755
sd::CustomAnimationEffectTabPage mxFTAfterEffect std::unique_ptr<weld::Label>
-sd/source/ui/animations/CustomAnimationDialog.cxx:2275
- sd::CustomAnimationDurationTabPage mxContainer std::unique_ptr<weld::Container>
sd/source/ui/animations/CustomAnimationDialog.cxx:2276
+ sd::CustomAnimationDurationTabPage mxContainer std::unique_ptr<weld::Container>
+sd/source/ui/animations/CustomAnimationDialog.cxx:2277
sd::CustomAnimationDurationTabPage mxFTStart std::unique_ptr<weld::Label>
-sd/source/ui/animations/CustomAnimationDialog.cxx:2278
+sd/source/ui/animations/CustomAnimationDialog.cxx:2279
sd::CustomAnimationDurationTabPage mxFTStartDelay std::unique_ptr<weld::Label>
-sd/source/ui/animations/CustomAnimationDialog.cxx:2641
- sd::CustomAnimationTextAnimTabPage mxContainer std::unique_ptr<weld::Container>
sd/source/ui/animations/CustomAnimationDialog.cxx:2642
+ sd::CustomAnimationTextAnimTabPage mxContainer std::unique_ptr<weld::Container>
+sd/source/ui/animations/CustomAnimationDialog.cxx:2643
sd::CustomAnimationTextAnimTabPage mxFTGroupText std::unique_ptr<weld::Label>
-sd/source/ui/animations/CustomAnimationDialog.hxx:147
+sd/source/ui/animations/CustomAnimationDialog.hxx:141
sd::SdPropertySubControl mxContainer std::unique_ptr<weld::Container>
-sd/source/ui/dlg/PhotoAlbumDialog.hxx:60
+sd/source/ui/dlg/PhotoAlbumDialog.hxx:51
sd::SdPhotoAlbumDialog m_xImg std::unique_ptr<weld::CustomWeld>
sd/source/ui/inc/custsdlg.hxx:42
SdCustomShowDlg m_xBtnHelp std::unique_ptr<weld::Button>
@@ -450,23 +460,23 @@ sd/source/ui/remotecontrol/ZeroconfService.hxx:36
sd::ZeroconfService port const uint
sd/source/ui/slidesorter/view/SlsLayouter.cxx:64
sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
-sd/source/ui/table/TableDesignPane.hxx:104
+sd/source/ui/table/TableDesignPane.hxx:100
sd::TableDesignPane aImpl const class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1297
sd::DocumentRenderer::Implementation mxObjectShell const SfxObjectShellRef
-sd/source/ui/view/viewshel.cxx:1208
+sd/source/ui/view/viewshel.cxx:1201
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock const sd::slidesorter::view::class SlideSorterView::DrawLock
-sd/source/ui/view/viewshel.cxx:1209
+sd/source/ui/view/viewshel.cxx:1202
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock const sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
-sd/source/ui/view/viewshel.cxx:1210
+sd/source/ui/view/viewshel.cxx:1203
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock const sd::slidesorter::controller::class PageSelector::UpdateLock
-sd/source/ui/view/viewshel.cxx:1211
+sd/source/ui/view/viewshel.cxx:1204
sd::KeepSlideSorterInSyncWithPageChanges m_aContext const sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:194
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
PDFGrammar::definition value rule<ScannerT>
-sdext/source/pdfimport/pdfparse/pdfparse.cxx:264
+sdext/source/pdfimport/pdfparse/pdfparse.cxx:263
PDFGrammar::definition array rule<ScannerT>
sfx2/source/doc/doctempl.cxx:116
DocTempl::DocTempl_EntryData_Impl mxObjShell const class SfxObjectShellLock
@@ -490,23 +500,23 @@ slideshow/source/engine/opengl/TransitionImpl.cxx:1990
(anonymous namespace)::ThreeFloats y GLfloat
slideshow/source/engine/opengl/TransitionImpl.cxx:1990
(anonymous namespace)::ThreeFloats x GLfloat
-starmath/inc/dialog.hxx:91
+starmath/inc/dialog.hxx:90
SmFontDialog m_xShowFont std::unique_ptr<weld::CustomWeld>
-starmath/inc/dialog.hxx:331
+starmath/inc/dialog.hxx:330
SmSymbolDialog m_xSymbolSetDisplayArea std::unique_ptr<weld::CustomWeld>
-starmath/inc/dialog.hxx:333
+starmath/inc/dialog.hxx:332
SmSymbolDialog m_xSymbolDisplay std::unique_ptr<weld::CustomWeld>
-starmath/inc/dialog.hxx:410
+starmath/inc/dialog.hxx:409
SmSymDefineDialog m_xOldSymbolDisplay std::unique_ptr<weld::CustomWeld>
-starmath/inc/dialog.hxx:411
+starmath/inc/dialog.hxx:410
SmSymDefineDialog m_xSymbolDisplay std::unique_ptr<weld::CustomWeld>
-starmath/inc/dialog.hxx:413
+starmath/inc/dialog.hxx:412
SmSymDefineDialog m_xCharsetDisplayArea std::unique_ptr<weld::CustomWeld>
-starmath/inc/smmod.hxx:69
+starmath/inc/smmod.hxx:68
SmModule mpLocSymbolData std::unique_ptr<SmLocalizedSymbolData>
-starmath/inc/view.hxx:218
+starmath/inc/view.hxx:217
SmViewShell maGraphicController const class SmGraphicController
-starmath/source/accessibility.hxx:271
+starmath/source/accessibility.hxx:268
SmEditSource rEditAcc class SmEditAccessible &
svl/source/crypto/cryptosign.cxx:123
(anonymous namespace)::(anonymous) extnID const SECItem
@@ -520,17 +530,25 @@ svl/source/crypto/cryptosign.cxx:284
(anonymous namespace)::(anonymous) failInfo SECItem
svtools/source/filter/exportdialog.hxx:125
ExportDialog mxEncoding std::unique_ptr<weld::Widget>
-svx/source/inc/datanavi.hxx:604
+svx/source/inc/datanavi.hxx:408
+ svxform::AddDataItemDialog m_xDataTypeFT std::unique_ptr<weld::Label>
+svx/source/inc/datanavi.hxx:591
svxform::AddInstanceDialog m_xURLFT std::unique_ptr<weld::Label>
+svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:156
+ textconversiondlgs::ChineseDictionaryDialog m_xFT_Term std::unique_ptr<weld::Label>
+svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:159
+ textconversiondlgs::ChineseDictionaryDialog m_xFT_Mapping std::unique_ptr<weld::Label>
+svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:162
+ textconversiondlgs::ChineseDictionaryDialog m_xFT_Property std::unique_ptr<weld::Label>
sw/source/core/crsr/crbm.cxx:66
(anonymous namespace)::CursorStateHelper m_aSaveState const class SwCursorSaveState
-sw/source/core/frmedt/fetab.cxx:79
+sw/source/core/frmedt/fetab.cxx:78
TableWait m_pWait const std::unique_ptr<SwWait>
sw/source/core/layout/dbg_lay.cxx:170
SwImplEnterLeave nAction const enum DbgAction
-sw/source/ui/config/mailconfigpage.cxx:56
- SwTestAccountSettingsDialog m_xEstablish std::unique_ptr<weld::Label>
sw/source/ui/config/mailconfigpage.cxx:57
+ SwTestAccountSettingsDialog m_xEstablish std::unique_ptr<weld::Label>
+sw/source/ui/config/mailconfigpage.cxx:58
SwTestAccountSettingsDialog m_xFind std::unique_ptr<weld::Label>
sw/source/ui/dbui/mmgreetingspage.hxx:114
SwMailBodyDialog m_xBodyFT std::unique_ptr<weld::Label>
@@ -586,7 +604,7 @@ sw/source/uibase/inc/uivwimp.hxx:95
SwView_Impl xTmpSelDocSh const class SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:46
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard const class SolarMutexGuard
-toolkit/source/awt/stylesettings.cxx:90
+toolkit/source/awt/stylesettings.cxx:92
toolkit::StyleMethodGuard m_aGuard const class SolarMutexGuard
unoidl/source/unoidlprovider.cxx:672
unoidl::detail::(anonymous namespace)::UnoidlCursor reference1_ rtl::Reference<UnoidlProvider>
@@ -608,11 +626,11 @@ vcl/inc/WidgetThemeLibrary.hxx:90
vcl::ControlDrawParameters eState enum ControlState
vcl/inc/WidgetThemeLibrary.hxx:106
vcl::WidgetThemeLibrary_t nSize uint32_t
-vcl/source/app/salvtables.cxx:668
+vcl/source/app/salvtables.cxx:744
SalInstanceContainer m_xContainer VclPtr<vcl::Window>
-vcl/source/gdi/jobset.cxx:35
- ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:36
+ ImplOldJobSetupData cDeviceName char [32]
+vcl/source/gdi/jobset.cxx:37
ImplOldJobSetupData cPortName char [32]
vcl/source/uitest/uno/uitest_uno.cxx:35
UITestUnoObj mpUITest std::unique_ptr<UITest>
@@ -620,13 +638,15 @@ vcl/unx/generic/print/prtsetup.hxx:73
RTSPaperPage m_xContainer std::unique_ptr<weld::Widget>
vcl/unx/generic/print/prtsetup.hxx:108
RTSDevicePage m_xContainer std::unique_ptr<weld::Widget>
-vcl/unx/gtk3/gtk3gtkinst.cxx:2713
+vcl/unx/gtk3/gtk3gtkinst.cxx:2668
CrippledViewport viewport GtkViewport
-vcl/unx/gtk3/gtk3gtkinst.cxx:2961
- GtkInstanceScrolledWindow m_nHAdjustChangedSignalId gulong
vcl/unx/gtk/a11y/atkhypertext.cxx:29
(anonymous) atk_hyper_link const AtkHyperlink
writerfilter/source/ooxml/OOXMLStreamImpl.hxx:43
writerfilter::ooxml::OOXMLStreamImpl mxFastParser css::uno::Reference<css::xml::sax::XFastParser>
writerperfect/inc/WPFTEncodingDialog.hxx:37
writerperfect::WPFTEncodingDialog m_xBtnOk std::unique_ptr<weld::Button>
+xmlsecurity/inc/certificateviewer.hxx:69
+ CertificateViewerTP mxContainer std::unique_ptr<weld::Container>
+xmlsecurity/inc/macrosecurity.hxx:69
+ MacroSecurityTP m_xContainer std::unique_ptr<weld::Container>
diff --git a/compilerplugins/clang/unusedfields.writeonly.results b/compilerplugins/clang/unusedfields.writeonly.results
index 23e9d63c4c47..7ece4e82642b 100644
--- a/compilerplugins/clang/unusedfields.writeonly.results
+++ b/compilerplugins/clang/unusedfields.writeonly.results
@@ -1,3 +1,7 @@
+accessibility/inc/standard/vclxaccessiblelistitem.hxx:69
+ VCLXAccessibleListItem m_xParentContext css::uno::Reference<css::accessibility::XAccessibleContext>
+basctl/source/inc/baside3.hxx:141
+ basctl::DialogWindowLayout pChild VclPtr<class basctl::DialogWindow>
basctl/source/inc/basidesh.hxx:87
basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:183
@@ -66,11 +70,19 @@ chart2/inc/ChartModel.hxx:470
chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:471
chart::ChartModel mnEnd sal_Int32
-chart2/source/controller/dialogs/DialogModel.cxx:178
+chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:351
+ (anonymous namespace)::WrappedLineColorProperty m_aOuterValue class com::sun::star::uno::Any
+chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:399
+ (anonymous namespace)::WrappedLineStyleProperty m_aOuterValue class com::sun::star::uno::Any
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:662
+ chart::wrapper::WrappedErrorBarRangePositiveProperty m_aOuterValue class com::sun::star::uno::Any
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:725
+ chart::wrapper::WrappedErrorBarRangeNegativeProperty m_aOuterValue class com::sun::star::uno::Any
+chart2/source/controller/dialogs/DialogModel.cxx:174
(anonymous namespace)::lcl_DataSeriesContainerAppend m_rDestCnt (anonymous namespace)::lcl_DataSeriesContainerAppend::tContainerType *
-chart2/source/controller/dialogs/DialogModel.cxx:237
+chart2/source/controller/dialogs/DialogModel.cxx:233
(anonymous namespace)::lcl_RolesWithRangeAppend m_rDestCnt (anonymous namespace)::lcl_RolesWithRangeAppend::tContainerType *
-chart2/source/controller/main/ElementSelector.hxx:37
+chart2/source/controller/main/ElementSelector.hxx:38
chart::ListBoxEntryData nHierarchyDepth sal_Int32
chart2/source/inc/MediaDescriptorHelper.hxx:77
apphelper::MediaDescriptorHelper ReadOnly _Bool
@@ -84,24 +96,84 @@ codemaker/source/javamaker/classfile.cxx:540
doubleBytes double
comphelper/qa/container/comphelper_ifcontainer.cxx:45
ContainerListener m_pStats struct ContainerStats *const
-configmgr/source/components.cxx:85
+configmgr/source/components.cxx:84
configmgr::(anonymous namespace)::UnresolvedVectorItem name class rtl::OUString
-configmgr/source/components.cxx:164
+configmgr/source/components.cxx:163
configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
+connectivity/source/cpool/ZConnectionPool.hxx:101
+ connectivity::(anonymous) xPooledConnection css::uno::Reference<css::sdbc::XPooledConnection>
connectivity/source/drivers/mork/MorkParser.hxx:133
MorkParser error_ enum MorkErrors
+connectivity/source/drivers/mork/MResultSet.hxx:234
+ connectivity::mork::OResultSet m_xParamColumns ::rtl::Reference<connectivity::OSQLColumns>
+connectivity/source/drivers/mozab/bootstrap/MNSINIParser.hxx:41
+ ini_Section sName class rtl::OUString
+connectivity/source/drivers/mysqlc/mysqlc_connection.hxx:72
+ connectivity::mysqlc::ConnectionSettings schema class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:106
+ pq_sdbc_driver::ImplementationStatics types css::uno::Sequence<css::uno::Type>
+connectivity/source/drivers/postgresql/pq_statics.hxx:146
+ pq_sdbc_driver::Statics NO_NULLS class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:147
+ pq_sdbc_driver::Statics NULABLE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:148
+ pq_sdbc_driver::Statics NULLABLE_UNKNOWN class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:149
+ pq_sdbc_driver::Statics SELECT class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:150
+ pq_sdbc_driver::Statics UPDATE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:151
+ pq_sdbc_driver::Statics INSERT class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:152
+ pq_sdbc_driver::Statics DELETE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:153
+ pq_sdbc_driver::Statics RULE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:154
+ pq_sdbc_driver::Statics REFERENCES class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:155
+ pq_sdbc_driver::Statics TRIGGER class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:156
+ pq_sdbc_driver::Statics EXECUTE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:157
+ pq_sdbc_driver::Statics USAGE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:158
+ pq_sdbc_driver::Statics CREATE class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:159
+ pq_sdbc_driver::Statics TEMPORARY class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:192
+ pq_sdbc_driver::Statics KEY_COLUMN class rtl::OUString
+connectivity/source/drivers/postgresql/pq_statics.hxx:216
+ pq_sdbc_driver::Statics HELP_TEXT class rtl::OUString
connectivity/source/inc/dbase/DTable.hxx:62
connectivity::dbase::ODbaseTable::DBFHeader dateElems sal_uInt8 [3]
connectivity/source/inc/dbase/DTable.hxx:86
connectivity::dbase::ODbaseTable::DBFColumn db_adr sal_uInt32
+connectivity/source/inc/file/fcomp.hxx:44
+ connectivity::file::OPredicateCompiler m_xIndexes css::uno::Reference<css::container::XNameAccess>
+connectivity/source/inc/file/FResultSet.hxx:79
+ connectivity::file::OResultSet m_aParameterRow connectivity::OValueRefRow
+connectivity/source/inc/file/FResultSet.hxx:91
+ connectivity::file::OResultSet m_xParamColumns ::rtl::Reference<connectivity::OSQLColumns>
+connectivity/source/inc/odbc/OConnection.hxx:57
+ connectivity::odbc::OConnection m_sUser class rtl::OUString
+connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx:72
+ connectivity::odbc::ODatabaseMetaDataResultSet m_aStatement css::uno::WeakReferenceHelper
+connectivity/source/inc/OTypeInfo.hxx:31
+ connectivity::OTypeInfo aTypeName class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:32
+ connectivity::OTypeInfo aLocalTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:34
connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:36
connectivity::OTypeInfo nMaximumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:38
connectivity::OTypeInfo nType sal_Int16
+connectivity/source/inc/writer/WTable.hxx:68
+ connectivity::writer::OWriterTable m_xFormats css::uno::Reference<css::util::XNumberFormats>
connectivity/source/parse/sqliterator.cxx:118
connectivity::ForbidQueryName m_sForbiddenQueryName class rtl::OUString
+cppcanvas/source/inc/canvasgraphichelper.hxx:66
+ cppcanvas::internal::CanvasGraphicHelper mxGraphicDevice css::uno::Reference<css::rendering::XGraphicDevice>
cppcanvas/source/inc/implrenderer.hxx:92
cppcanvas::internal::XForm eM11 float
cppcanvas/source/inc/implrenderer.hxx:93
@@ -116,7 +188,7 @@ cppcanvas/source/inc/implrenderer.hxx:97
cppcanvas::internal::XForm eDy float
cppcanvas/source/inc/implrenderer.hxx:215
cppcanvas::internal::ImplRenderer aBaseTransform struct cppcanvas::internal::XForm
-cppu/source/typelib/typelib.cxx:921
+cppu/source/typelib/typelib.cxx:918
(anonymous namespace)::BaseList set (anonymous namespace)::BaseList::Set
cppu/source/uno/check.cxx:38
(anonymous namespace)::C1 n1 sal_Int16
@@ -166,28 +238,96 @@ cppuhelper/source/access_control.cxx:79
cppu::(anonymous namespace)::permission m_str1 rtl_uString *
cppuhelper/source/access_control.cxx:80
cppu::(anonymous namespace)::permission m_str2 rtl_uString *
-cppuhelper/source/typemanager.cxx:832
+cppuhelper/source/typemanager.cxx:829
(anonymous namespace)::BaseOffset set_ std::set<OUString>
+cui/source/dialogs/colorpicker.cxx:1208
+ cui::ColorPicker msTitle class rtl::OUString
+cui/source/inc/acccfg.hxx:51
+ SfxAccCfgTabListBox_Impl m_pAccelConfigPage VclPtr<class SfxAcceleratorConfigPage>
+cui/source/inc/acccfg.hxx:139
+ SfxAcceleratorConfigPage m_sModuleShortName class rtl::OUString
cui/source/inc/cuihyperdlg.hxx:57
SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:77
SvxHpLinkDlg maCtrl class SvxHlinkCtrl
+cui/source/inc/cuitabline.hxx:116
+ SvxLineTabPage m_pColorList XColorListRef
+cui/source/inc/hangulhanjadlg.hxx:129
+ svx::HangulHanjaConversionDialog m_pIgnoreNonPrimary VclPtr<class CheckBox>
+cui/source/inc/hlmarkwn.hxx:75
+ SvxHlinkDlgMarkWnd maStrLastURL class rtl::OUString
+cui/source/inc/SvxToolbarConfigPage.hxx:93
+ SvxToolbarEntriesListBox m_aCheckBoxImageSizePixel class Size
+cui/source/inc/tabstpge.hxx:36
+ TabWin_Impl mpPage VclPtr<class SvxTabulatorTabPage>
+cui/source/inc/transfrm.hxx:228
+ SvxSlantTabPage maRange basegfx::B2DRange
+cui/source/options/treeopt.cxx:471
+ OptionsGroupInfo m_sPageURL class rtl::OUString
cui/source/tabpages/swpossizetabpage.cxx:613
(anonymous namespace)::FrmMaps pMap const struct FrmMap *
+dbaccess/source/core/api/RowSetCacheIterator.hxx:34
+ dbaccess::(anonymous) aBookmark css::uno::Any
+dbaccess/source/core/dataaccess/databasedocument.hxx:176
+ dbaccess::ODatabaseDocument m_pEventExecutor ::rtl::Reference<DocumentEventExecutor>
dbaccess/source/core/dataaccess/documentdefinition.cxx:287
dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:84
dbaccess::OSingleSelectQueryComposer m_aColumnsCollection std::vector<std::unique_ptr<OPrivateColumns> >
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:86
dbaccess::OSingleSelectQueryComposer m_aTablesCollection std::vector<std::unique_ptr<OPrivateTables> >
+dbaccess/source/core/inc/TableDeco.hxx:67
+ dbaccess::ODBTableDecorator m_xColumnMediator css::uno::Reference<css::container::XContainerListener>
dbaccess/source/core/misc/DatabaseDataProvider.cxx:623
dbaccess::(anonymous namespace)::ColumnDescription nResultSetPosition sal_Int32
dbaccess/source/core/misc/DatabaseDataProvider.cxx:624
dbaccess::(anonymous namespace)::ColumnDescription nDataType sal_Int32
-desktop/qa/desktop_lib/test_desktop_lib.cxx:189
+dbaccess/source/filter/xml/dbloader2.cxx:227
+ dbaxml::DBContentLoader m_xMySelf Reference<class com::sun::star::frame::XFrameLoader>
+dbaccess/source/ui/app/AppIconControl.hxx:31
+ dbaui::OApplicationIconControl m_aMousePos class Point
+dbaccess/source/ui/browser/dbloader.cxx:68
+ DBContentLoader m_aURL class rtl::OUString
+dbaccess/source/ui/browser/dbloader.cxx:70
+ DBContentLoader m_xListener Reference<class com::sun::star::frame::XLoadEventListener>
+dbaccess/source/ui/browser/dbloader.cxx:71
+ DBContentLoader m_xFrame Reference<class com::sun::star::frame::XFrame>
+dbaccess/source/ui/dlg/generalpage.hxx:135
+ dbaui::OGeneralPageWizard::DocumentDescriptor sFilter class rtl::OUString
+dbaccess/source/ui/inc/DExport.hxx:92
+ dbaui::ODatabaseExport m_sValToken class rtl::OUString
+dbaccess/source/ui/inc/FieldDescriptions.hxx:34
+ dbaui::OFieldDescription m_aDefaultValue css::uno::Any
+dbaccess/source/ui/inc/RelationDlg.hxx:51
+ dbaui::ORelationDialog m_xConnection css::uno::Reference<css::sdbc::XConnection>
+dbaccess/source/ui/inc/TokenWriter.hxx:53
+ dbaui::ODatabaseImportExport m_aLocale css::lang::Locale
+dbaccess/source/ui/inc/TypeInfo.hxx:70
+ dbaui::OTypeInfo aLiteralPrefix class rtl::OUString
+dbaccess/source/ui/inc/TypeInfo.hxx:71
+ dbaui::OTypeInfo aLiteralSuffix class rtl::OUString
+desktop/qa/desktop_lib/test_desktop_lib.cxx:199
DesktopLOKTest m_bModified _Bool
+desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:119
+ dp_gui::ProgressCmdEnv m_xAbortChannel uno::Reference<task::XAbortChannel>
+desktop/source/deployment/gui/dp_gui_updatedialog.hxx:201
+ dp_gui::UpdateDialog m_xExtensionManager css::uno::Reference<css::deployment::XExtensionManager>
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:117
dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
+desktop/source/deployment/manager/dp_managerfac.cxx:44
+ dp_manager::factory::PackageManagerFactoryImpl m_xUserMgr Reference<deployment::XPackageManager>
+desktop/source/deployment/manager/dp_managerfac.cxx:45
+ dp_manager::factory::PackageManagerFactoryImpl m_xSharedMgr Reference<deployment::XPackageManager>
+desktop/source/deployment/manager/dp_managerfac.cxx:46
+ dp_manager::factory::PackageManagerFactoryImpl m_xBundledMgr Reference<deployment::XPackageManager>
+desktop/source/deployment/manager/dp_managerfac.cxx:47
+ dp_manager::factory::PackageManagerFactoryImpl m_xTmpMgr Reference<deployment::XPackageManager>
+desktop/source/deployment/manager/dp_managerfac.cxx:48
+ dp_manager::factory::PackageManagerFactoryImpl m_xBakMgr Reference<deployment::XPackageManager>
+desktop/source/migration/migration_impl.hxx:58
+ desktop::migration_step name class rtl::OUString
+desktop/source/offacc/acceptor.hxx:95
+ desktop::AccInstanceProvider m_rConnection css::uno::Reference<css::connection::XConnection>
desktop/unx/source/splashx.c:370
functions unsigned long
desktop/unx/source/splashx.c:370
@@ -196,24 +336,16 @@ desktop/unx/source/splashx.c:370
flags unsigned long
desktop/unx/source/splashx.c:371
input_mode long
-drawinglayer/source/attribute/sdrfillgraphicattribute.cxx:44
+drawinglayer/source/attribute/sdrfillgraphicattribute.cxx:47
drawinglayer::attribute::ImpSdrFillGraphicAttribute mbLogSize _Bool
drawinglayer/source/attribute/sdrsceneattribute3d.cxx:32
drawinglayer::attribute::ImpSdrSceneAttribute mfDistance double
-drawinglayer/source/tools/emfpbrush.hxx:104
+drawinglayer/source/tools/emfpbrush.hxx:103
emfplushelper::EMFPBrush wrapMode sal_Int32
-drawinglayer/source/tools/emfpcustomlinecap.hxx:33
+drawinglayer/source/tools/emfpcustomlinecap.hxx:34
emfplushelper::EMFPCustomLineCap mbIsFilled _Bool
-drawinglayer/source/tools/emfppen.hxx:48
- emfplushelper::EMFPPen pen_transformation basegfx::B2DHomMatrix
-drawinglayer/source/tools/emfppen.hxx:55
- emfplushelper::EMFPPen mitterLimit float
-drawinglayer/source/tools/emfppen.hxx:57
- emfplushelper::EMFPPen dashCap sal_Int32
-drawinglayer/source/tools/emfppen.hxx:58
- emfplushelper::EMFPPen dashOffset float
-drawinglayer/source/tools/emfppen.hxx:60
- emfplushelper::EMFPPen alignment sal_Int32
+editeng/source/accessibility/AccessibleStaticTextBase.cxx:178
+ accessibility::AccessibleStaticTextBase_Impl maOffset class Point
embeddedobj/source/inc/oleembobj.hxx:136
OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:148
@@ -232,26 +364,92 @@ embeddedobj/source/inc/oleembobj.hxx:179
OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:193
OleEmbeddedObject m_bFromClipboard _Bool
-emfio/inc/mtftools.hxx:121
+emfio/inc/mtftools.hxx:120
emfio::LOGFONTW lfOrientation sal_Int32
-emfio/inc/mtftools.hxx:127
+emfio/inc/mtftools.hxx:126
emfio::LOGFONTW lfOutPrecision sal_uInt8
-emfio/inc/mtftools.hxx:128
+emfio/inc/mtftools.hxx:127
emfio::LOGFONTW lfClipPrecision sal_uInt8
-emfio/inc/mtftools.hxx:129
+emfio/inc/mtftools.hxx:128
emfio::LOGFONTW lfQuality sal_uInt8
-emfio/source/reader/emfreader.cxx:312
+emfio/inc/mtftools.hxx:512
+ emfio::MtfTools mrclBounds tools::Rectangle
+emfio/source/reader/emfreader.cxx:311
(anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
-emfio/source/reader/emfreader.cxx:313
+emfio/source/reader/emfreader.cxx:312
(anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
+extensions/source/bibliography/bibview.hxx:61
+ bib::BibView m_xGeneralPage css::uno::Reference<css::awt::XFocusListener>
+extensions/source/bibliography/datman.hxx:94
+ BibDataManager aUID css::uno::Any
+extensions/source/propctrlr/genericpropertyhandler.hxx:63
+ pcr::GenericPropertyHandler m_xComponentIntrospectionAccess css::uno::Reference<css::beans::XIntrospectionAccess>
extensions/source/scanner/scanner.hxx:45
ScannerManager mpData void *
-framework/inc/services/layoutmanager.hxx:258
+extensions/source/update/check/updatehdl.hxx:108
+ UpdateHandler msCancelTitle class rtl::OUString
+extensions/source/update/check/updatehdl.hxx:111
+ UpdateHandler msInstallNow class rtl::OUString
+extensions/source/update/check/updatehdl.hxx:112
+ UpdateHandler msInstallLater class rtl::OUString
+forms/source/component/ComboBox.hxx:59
+ frm::OComboBoxModel m_xFormatter css::uno::Reference<css::util::XNumberFormatter>
+forms/source/xforms/submission/submission.hxx:113
+ CSubmission m_aEncoding class rtl::OUString
+formula/source/ui/dlg/formula.cxx:147
+ formula::FormulaDlg_Impl m_aUnaryOpCodes uno::Sequence<sheet::FormulaOpCodeMapEntry>
+formula/source/ui/dlg/formula.cxx:148
+ formula::FormulaDlg_Impl m_aBinaryOpCodes uno::Sequence<sheet::FormulaOpCodeMapEntry>
+fpicker/source/office/fpinteraction.hxx:54
+ svt::OFilePickerInteractionHandler m_aException css::uno::Any
+fpicker/source/office/OfficeFolderPicker.hxx:43
+ SvtFolderPicker m_aDescription class rtl::OUString
+framework/inc/helper/titlebarupdate.hxx:58
+ framework::TitleBarUpdate::TModuleInfo sUIName class rtl::OUString
+framework/inc/helper/vclstatusindicator.hxx:56
+ framework::VCLStatusIndicator m_sText class rtl::OUString
+framework/inc/jobs/jobdata.hxx:174
+ framework::JobData m_aLastExecutionResult class framework::JobResult
+framework/inc/services/desktop.hxx:402
+ framework::Desktop m_aInteractionRequest css::uno::Any
+framework/inc/services/layoutmanager.hxx:249
+ framework::LayoutManager m_xModel css::uno::WeakReference<css::frame::XModel>
+framework/inc/services/layoutmanager.hxx:260
framework::LayoutManager m_bGlobalSettings _Bool
+framework/inc/uielement/langselectionmenucontroller.hxx:81
+ framework::LanguageSelectionMenuController m_xMenuDispatch_Lang css::uno::Reference<css::frame::XDispatch>
+framework/inc/uielement/langselectionmenucontroller.hxx:83
+ framework::LanguageSelectionMenuController m_xMenuDispatch_Font css::uno::Reference<css::frame::XDispatch>
+framework/inc/uielement/langselectionmenucontroller.hxx:85
+ framework::LanguageSelectionMenuController m_xMenuDispatch_CharDlgForParagraph css::uno::Reference<css::frame::XDispatch>
+framework/inc/uielement/toolbarmerger.hxx:45
+ framework::AddonsParams aTarget class rtl::OUString
+framework/inc/uielement/toolbarmerger.hxx:65
+ framework::ReferenceToolbarPathInfo pToolbar VclPtr<class ToolBox>
+framework/source/fwe/classes/addonsoptions.cxx:222
+ framework::AddonsOptions_Impl::OneImageEntry aURL class rtl::OUString
+framework/source/inc/accelerators/presethandler.hxx:84
+ framework::PresetHandler m_sResourceType class rtl::OUString
+framework/source/inc/accelerators/presethandler.hxx:93
+ framework::PresetHandler m_sModule class rtl::OUString
+framework/source/inc/accelerators/presethandler.hxx:129
+ framework::PresetHandler m_lPresets std::vector<OUString>
+framework/source/inc/accelerators/presethandler.hxx:133
+ framework::PresetHandler m_lTargets std::vector<OUString>
+framework/source/inc/accelerators/presethandler.hxx:140
+ framework::PresetHandler m_aLanguageTag class LanguageTag
+framework/source/inc/accelerators/presethandler.hxx:144
+ framework::PresetHandler m_sRelPathNoLang class rtl::OUString
+framework/source/layoutmanager/toolbarlayoutmanager.hxx:274
+ framework::ToolbarLayoutManager m_aStartDockMousePos class Point
framework/source/layoutmanager/toolbarlayoutmanager.hxx:285
framework::ToolbarLayoutManager m_bGlobalSettings _Bool
+helpcompiler/inc/HelpCompiler.hxx:161
+ StreamTable document_id std::string
i18nutil/source/utility/paper.cxx:303
paperword string char *
+idlc/inc/astexpression.hxx:128
+ AstExpression m_fileName class rtl::OString
include/basegfx/utils/systemdependentdata.hxx:66
basegfx::MinimalSystemDependentDataManager maSystemDependentDataReferences std::set<SystemDependentData_SharedPtr>
include/basic/basmgr.hxx:52
@@ -276,6 +474,10 @@ include/canvas/rendering/irendermodule.hxx:42
canvas::Vertex z float
include/canvas/rendering/irendermodule.hxx:42
canvas::Vertex x float
+include/comphelper/SelectionMultiplex.hxx:48
+ comphelper::OSelectionChangeListener m_xAdapter rtl::Reference<OSelectionChangeMultiplexer>
+include/comphelper/unique_disposing_ptr.hxx:30
+ comphelper::unique_disposing_ptr m_xTerminateListener css::uno::Reference<css::frame::XTerminateListener>
include/drawinglayer/attribute/sdrallattribute3d.hxx:44
drawinglayer::attribute::SdrLineFillShadowAttribute3D maLineStartEnd const class drawinglayer::attribute::SdrLineStartEndAttribute
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:51
@@ -288,12 +490,30 @@ include/drawinglayer/texture/texture.hxx:278
drawinglayer::texture::GeoTexSvxHatch mfAngle double
include/editeng/adjustitem.hxx:39
SvxAdjustItem bLeft _Bool
+include/editeng/editdata.hxx:258
+ RtfImportInfo aText class rtl::OUString
+include/editeng/outliner.hxx:549
+ EBulletInfo aGraphic class Graphic
include/editeng/outlobj.hxx:42
OutlinerParaObjData mbIsEditDoc _Bool
-include/LibreOfficeKit/LibreOfficeKit.h:108
+include/editeng/unolingu.hxx:95
+ SvxAlternativeSpelling xHyphWord css::uno::Reference<css::linguistic2::XHyphenatedWord>
+include/editeng/unotext.hxx:424
+ SvxUnoTextBase xParentText css::uno::Reference<css::text::XText>
+include/editeng/unotext.hxx:592
+ SvxUnoTextContentEnumeration mxParentText css::uno::Reference<css::text::XText>
+include/framework/framelistanalyzer.hxx:121
+ framework::FrameListAnalyzer m_xHelp css::uno::Reference<css::frame::XFrame>
+include/LibreOfficeKit/LibreOfficeKit.h:118
_LibreOfficeKitDocumentClass nSize size_t
-include/LibreOfficeKit/LibreOfficeKit.h:310
+include/LibreOfficeKit/LibreOfficeKit.h:320
_LibreOfficeKitDocumentClass getPartInfo char *(*)(LibreOfficeKitDocument *, int)
+include/linguistic/lngprophelp.hxx:152
+ linguistic::PropertyHelper_Thesaurus xPropHelper css::uno::Reference<css::beans::XPropertyChangeListener>
+include/linguistic/lngprophelp.hxx:213
+ linguistic::PropertyHelper_Spelling xPropHelper css::uno::Reference<css::beans::XPropertyChangeListener>
+include/linguistic/lngprophelp.hxx:283
+ linguistic::PropertyHelper_Hyphenation xPropHelper css::uno::Reference<css::beans::XPropertyChangeListener>
include/opencl/openclwrapper.hxx:34
openclwrapper::KernelEnv mpkProgram cl_program
include/opencl/openclwrapper.hxx:50
@@ -304,39 +524,125 @@ include/opencl/platforminfo.hxx:30
OpenCLDeviceInfo mnComputeUnits size_t
include/opencl/platforminfo.hxx:31
OpenCLDeviceInfo mnFrequency size_t
+include/sfx2/docfilt.hxx:50
+ SfxFilter aPattern class rtl::OUString
+include/sfx2/frmdescr.hxx:54
+ SfxFrameDescriptor aActualURL class INetURLObject
+include/sfx2/mailmodelapi.hxx:54
+ SfxMailModel maSubject class rtl::OUString
include/sfx2/minfitem.hxx:35
SfxMacroInfoItem aCommentText const class rtl::OUString
-include/svtools/brwbox.hxx:248
+include/sfx2/notebookbar/NotebookbarTabControl.hxx:45
+ NotebookbarTabControl m_pListener css::uno::Reference<css::ui::XUIConfigurationListener>
+include/sfx2/sidebar/DeckDescriptor.hxx:38
+ sfx2::sidebar::DeckDescriptor msHelpURL class rtl::OUString
+include/sfx2/sidebar/PanelDescriptor.hxx:36
+ sfx2::sidebar::PanelDescriptor msHelpURL class rtl::OUString
+include/sfx2/sidebar/TabBar.hxx:61
+ sfx2::sidebar::TabBar::DeckMenuData msDeckId class rtl::OUString
+include/sfx2/tabdlg.hxx:72
+ SfxTabDialog m_pApplyBtn VclPtr<class PushButton>
+include/sfx2/templatelocalview.hxx:176
+ TemplateLocalView maCurRegionName class rtl::OUString
+include/svl/adrparse.hxx:30
+ SvAddressEntry_Impl m_aRealName class rtl::OUString
+include/svtools/brwbox.hxx:209
+ BrowseBox aGridLineColor class Color
+include/svtools/brwbox.hxx:221
+ BrowseBox a1stPoint class Point
+include/svtools/brwbox.hxx:222
+ BrowseBox a2ndPoint class Point
+include/svtools/brwbox.hxx:250
BrowseBox::CursorMoveAttempt m_nCol const long
-include/svtools/brwbox.hxx:249
+include/svtools/brwbox.hxx:251
BrowseBox::CursorMoveAttempt m_nRow const long
-include/svtools/brwbox.hxx:250
+include/svtools/brwbox.hxx:252
BrowseBox::CursorMoveAttempt m_bScrolledToReachCell const _Bool
+include/svtools/ctrlbox.hxx:369
+ FontStyleBox aLastStyle class rtl::OUString
+include/svtools/ctrlbox.hxx:418
+ FontSizeBox aFontMetric class FontMetric
+include/svtools/ctrltool.hxx:150
+ FontList mpDev2 VclPtr<class OutputDevice>
... etc. - the rest is truncated
More information about the Libreoffice-commits
mailing list