summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-18 12:38:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-19 09:17:06 +0200
commitfd00bd0f69676659bb43bcc85d8ad5fd21e5de4c (patch)
treef9d62fef7f508f430efd72c85b0d0cf6a67da3be
parent8a01fc2f505acc6ed9af5ba18049131225baad30 (diff)
loplugin:unusedfields
make it a little smarter in dealing with fields that are smart pointers Change-Id: I44072105170882dc29fb19558f1065cffc7e5f11 Reviewed-on: https://gerrit.libreoffice.org/37751 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--canvas/source/cairo/cairo_canvas.cxx7
-rw-r--r--canvas/source/cairo/cairo_canvas.hxx1
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.cxx7
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.hxx1
-rw-r--r--canvas/source/opengl/ogl_spritecanvas.cxx7
-rw-r--r--canvas/source/opengl/ogl_spritecanvas.hxx1
-rw-r--r--canvas/source/vcl/canvas.cxx7
-rw-r--r--canvas/source/vcl/canvas.hxx1
-rw-r--r--canvas/source/vcl/spritecanvas.cxx7
-rw-r--r--canvas/source/vcl/spritecanvas.hxx1
-rw-r--r--compilerplugins/clang/unusedfields.cxx5
-rw-r--r--compilerplugins/clang/unusedfields.untouched.results36
-rw-r--r--compilerplugins/clang/unusedfields.writeonly.results858
-rw-r--r--connectivity/source/drivers/file/FTables.cxx6
-rw-r--r--connectivity/source/drivers/jdbc/ResultSet.cxx1
-rw-r--r--connectivity/source/inc/file/FTables.hxx6
-rw-r--r--connectivity/source/inc/java/sql/ResultSet.hxx1
-rw-r--r--cui/source/dialogs/iconcdlg.cxx9
-rw-r--r--cui/source/inc/cuitabarea.hxx2
-rw-r--r--cui/source/inc/iconcdlg.hxx2
-rw-r--r--cui/source/tabpages/tppattern.cxx2
-rw-r--r--dbaccess/source/ui/inc/WCPage.hxx3
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx4
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.hxx1
-rw-r--r--filter/source/msfilter/msdffimp.cxx5
-rw-r--r--framework/inc/uielement/menubarmanager.hxx1
-rw-r--r--framework/source/dispatch/loaddispatcher.cxx4
-rw-r--r--framework/source/inc/dispatch/loaddispatcher.hxx3
-rw-r--r--framework/source/uielement/menubarmanager.cxx1
-rw-r--r--framework/source/uielement/objectmenucontroller.cxx3
-rw-r--r--include/filter/msfilter/msdffimp.hxx1
-rw-r--r--include/svx/fontwork.hxx2
-rw-r--r--reportdesign/source/core/api/FormattedField.cxx1
-rw-r--r--reportdesign/source/core/api/Section.cxx2
-rw-r--r--reportdesign/source/core/inc/FormattedField.hxx1
-rw-r--r--reportdesign/source/core/inc/Section.hxx3
-rw-r--r--rsc/inc/rscdb.hxx14
-rw-r--r--rsc/source/parser/rscdb.cxx12
-rw-r--r--rsc/source/rsc/rsc.cxx1
-rw-r--r--sd/source/ui/dlg/animobjs.cxx2
-rw-r--r--sd/source/ui/inc/Ruler.hxx1
-rw-r--r--sd/source/ui/inc/animobjs.hxx1
-rw-r--r--sd/source/ui/view/sdruler.cxx2
-rw-r--r--sfx2/source/dialog/backingcomp.cxx14
-rw-r--r--svx/source/dialog/fontwork.cxx2
-rw-r--r--sw/inc/swcalwrp.hxx1
-rw-r--r--sw/source/core/bastyp/init.cxx1
48 files changed, 881 insertions, 175 deletions
diff --git a/canvas/source/cairo/cairo_canvas.cxx b/canvas/source/cairo/cairo_canvas.cxx
index b3f403927f69..bb0ce960be74 100644
--- a/canvas/source/cairo/cairo_canvas.cxx
+++ b/canvas/source/cairo/cairo_canvas.cxx
@@ -43,9 +43,8 @@ using namespace ::com::sun::star;
namespace cairocanvas
{
Canvas::Canvas( const uno::Sequence< uno::Any >& aArguments,
- const uno::Reference< uno::XComponentContext >& rxContext ) :
- maArguments(aArguments),
- mxComponentContext( rxContext )
+ const uno::Reference< uno::XComponentContext >& /*rxContext*/ ) :
+ maArguments(aArguments)
{
}
@@ -115,8 +114,6 @@ namespace cairocanvas
{
::osl::MutexGuard aGuard( m_aMutex );
- mxComponentContext.clear();
-
// forward to parent
CanvasBaseT::disposeThis();
}
diff --git a/canvas/source/cairo/cairo_canvas.hxx b/canvas/source/cairo/cairo_canvas.hxx
index 4f32368dcd79..3a5ec2cd0aa9 100644
--- a/canvas/source/cairo/cairo_canvas.hxx
+++ b/canvas/source/cairo/cairo_canvas.hxx
@@ -140,7 +140,6 @@ namespace cairocanvas
private:
css::uno::Sequence< css::uno::Any > maArguments;
- css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
};
typedef ::rtl::Reference< Canvas > CanvasRef;
diff --git a/canvas/source/cairo/cairo_spritecanvas.cxx b/canvas/source/cairo/cairo_spritecanvas.cxx
index 3370a9513b9f..a2f9ad10b010 100644
--- a/canvas/source/cairo/cairo_spritecanvas.cxx
+++ b/canvas/source/cairo/cairo_spritecanvas.cxx
@@ -41,9 +41,8 @@ using namespace ::com::sun::star;
namespace cairocanvas
{
SpriteCanvas::SpriteCanvas( const uno::Sequence< uno::Any >& aArguments,
- const uno::Reference< uno::XComponentContext >& rxContext ) :
- maArguments(aArguments),
- mxComponentContext( rxContext )
+ const uno::Reference< uno::XComponentContext >& /*rxContext*/ ) :
+ maArguments(aArguments)
{
}
@@ -109,8 +108,6 @@ namespace cairocanvas
{
::osl::MutexGuard aGuard( m_aMutex );
- mxComponentContext.clear();
-
// forward to parent
SpriteCanvasBaseT::disposeThis();
}
diff --git a/canvas/source/cairo/cairo_spritecanvas.hxx b/canvas/source/cairo/cairo_spritecanvas.hxx
index ee0b14d9e654..a26701fea02e 100644
--- a/canvas/source/cairo/cairo_spritecanvas.hxx
+++ b/canvas/source/cairo/cairo_spritecanvas.hxx
@@ -151,7 +151,6 @@ namespace cairocanvas
private:
css::uno::Sequence< css::uno::Any > maArguments;
- css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
};
typedef ::rtl::Reference< SpriteCanvas > SpriteCanvasRef;
diff --git a/canvas/source/opengl/ogl_spritecanvas.cxx b/canvas/source/opengl/ogl_spritecanvas.cxx
index 17ae212764b7..1da1a464281f 100644
--- a/canvas/source/opengl/ogl_spritecanvas.cxx
+++ b/canvas/source/opengl/ogl_spritecanvas.cxx
@@ -34,9 +34,8 @@ namespace sdecl = comphelper::service_decl;
namespace oglcanvas
{
SpriteCanvas::SpriteCanvas( const uno::Sequence< uno::Any >& aArguments,
- const uno::Reference< uno::XComponentContext >& rxContext ) :
- maArguments(aArguments),
- mxComponentContext( rxContext )
+ const uno::Reference< uno::XComponentContext >& /*rxContext*/ ) :
+ maArguments(aArguments)
{
}
@@ -82,8 +81,6 @@ namespace oglcanvas
{
::osl::MutexGuard aGuard( m_aMutex );
- mxComponentContext.clear();
-
// forward to parent
SpriteCanvasBaseT::disposeThis();
}
diff --git a/canvas/source/opengl/ogl_spritecanvas.hxx b/canvas/source/opengl/ogl_spritecanvas.hxx
index 202370bfd844..66c3383bc1da 100644
--- a/canvas/source/opengl/ogl_spritecanvas.hxx
+++ b/canvas/source/opengl/ogl_spritecanvas.hxx
@@ -107,7 +107,6 @@ namespace oglcanvas
private:
css::uno::Sequence< css::uno::Any > maArguments;
- css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
};
typedef ::rtl::Reference< SpriteCanvas > SpriteCanvasRef;
diff --git a/canvas/source/vcl/canvas.cxx b/canvas/source/vcl/canvas.cxx
index 0a413a5398a4..90826d253c5c 100644
--- a/canvas/source/vcl/canvas.cxx
+++ b/canvas/source/vcl/canvas.cxx
@@ -65,9 +65,8 @@ namespace vclcanvas
}
Canvas::Canvas( const uno::Sequence< uno::Any >& aArguments,
- const uno::Reference< uno::XComponentContext >& rxContext ) :
- maArguments(aArguments),
- mxComponentContext( rxContext )
+ const uno::Reference< uno::XComponentContext >& /*rxContext*/ ) :
+ maArguments(aArguments)
{
}
@@ -121,8 +120,6 @@ namespace vclcanvas
{
SolarMutexGuard aGuard;
- mxComponentContext.clear();
-
// forward to parent
CanvasBaseT::disposeThis();
}
diff --git a/canvas/source/vcl/canvas.hxx b/canvas/source/vcl/canvas.hxx
index 225ca2a7f1f4..6ce9b5e193b6 100644
--- a/canvas/source/vcl/canvas.hxx
+++ b/canvas/source/vcl/canvas.hxx
@@ -112,7 +112,6 @@ namespace vclcanvas
private:
css::uno::Sequence< css::uno::Any > maArguments;
- css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
};
typedef ::rtl::Reference< Canvas > CanvasRef;
diff --git a/canvas/source/vcl/spritecanvas.cxx b/canvas/source/vcl/spritecanvas.cxx
index 11a6ca5e27c1..5ef69d2c24e8 100644
--- a/canvas/source/vcl/spritecanvas.cxx
+++ b/canvas/source/vcl/spritecanvas.cxx
@@ -42,9 +42,8 @@ using namespace ::com::sun::star;
namespace vclcanvas
{
SpriteCanvas::SpriteCanvas( const uno::Sequence< uno::Any >& aArguments,
- const uno::Reference< uno::XComponentContext >& rxContext ) :
- maArguments(aArguments),
- mxComponentContext( rxContext )
+ const uno::Reference< uno::XComponentContext >& /*rxContext*/ ) :
+ maArguments(aArguments)
{
}
@@ -113,8 +112,6 @@ namespace vclcanvas
{
SolarMutexGuard aGuard;
- mxComponentContext.clear();
-
// forward to parent
SpriteCanvasBaseT::disposeThis();
}
diff --git a/canvas/source/vcl/spritecanvas.hxx b/canvas/source/vcl/spritecanvas.hxx
index b6f2bd5c6db8..1d59b39adb8b 100644
--- a/canvas/source/vcl/spritecanvas.hxx
+++ b/canvas/source/vcl/spritecanvas.hxx
@@ -149,7 +149,6 @@ namespace vclcanvas
private:
css::uno::Sequence< css::uno::Any > maArguments;
- css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
};
typedef ::rtl::Reference< SpriteCanvas > SpriteCanvasRef;
diff --git a/compilerplugins/clang/unusedfields.cxx b/compilerplugins/clang/unusedfields.cxx
index 60eca65e8fb0..f58ad599ea35 100644
--- a/compilerplugins/clang/unusedfields.cxx
+++ b/compilerplugins/clang/unusedfields.cxx
@@ -259,6 +259,11 @@ bool UnusedFields::VisitMemberExpr( const MemberExpr* memberExpr )
if (startswith(name, "read") || name.find(">>=") != std::string::npos)
// this is a write-only call
;
+ else if (name == "clear" || name == "dispose" || name == "clearAndDispose" || 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 ignoreing things like std::vector::clear, vector::swap,
+ // and VclPtr::clearAndDispose
+ ;
else
bPotentiallyReadFrom = true;
}
diff --git a/compilerplugins/clang/unusedfields.untouched.results b/compilerplugins/clang/unusedfields.untouched.results
index fd926f78535f..0803a2ea6cc4 100644
--- a/compilerplugins/clang/unusedfields.untouched.results
+++ b/compilerplugins/clang/unusedfields.untouched.results
@@ -38,6 +38,36 @@ compilerplugins/clang/test/unnecessaryoverride-dtor.hxx:42
IncludedDerived3 m rtl::Reference<Incomplete>
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
+connectivity/source/inc/OTypeInfo.hxx:31
+ connectivity::OTypeInfo aTypeName class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:32
+ connectivity::OTypeInfo aLiteralPrefix class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:33
+ connectivity::OTypeInfo aLiteralSuffix class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:34
+ connectivity::OTypeInfo aCreateParams class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:35
+ connectivity::OTypeInfo aLocalTypeName class rtl::OUString
+connectivity/source/inc/OTypeInfo.hxx:37
+ connectivity::OTypeInfo nPrecision sal_Int32
+connectivity/source/inc/OTypeInfo.hxx:39
+ connectivity::OTypeInfo nMaximumScale sal_Int16
+connectivity/source/inc/OTypeInfo.hxx:40
+ connectivity::OTypeInfo nMinimumScale sal_Int16
+connectivity/source/inc/OTypeInfo.hxx:43
+ connectivity::OTypeInfo nSearchType sal_Int16
+connectivity/source/inc/OTypeInfo.hxx:44
+ connectivity::OTypeInfo nNumPrecRadix sal_Int16
+connectivity/source/inc/OTypeInfo.hxx:46
+ connectivity::OTypeInfo bCurrency _Bool
+connectivity/source/inc/OTypeInfo.hxx:47
+ connectivity::OTypeInfo bAutoIncrement _Bool
+connectivity/source/inc/OTypeInfo.hxx:48
+ connectivity::OTypeInfo bNullable _Bool
+connectivity/source/inc/OTypeInfo.hxx:49
+ connectivity::OTypeInfo bCaseSensitive _Bool
+connectivity/source/inc/OTypeInfo.hxx:50
+ connectivity::OTypeInfo bUnsigned _Bool
cppu/source/threadpool/threadpool.cxx:377
_uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
@@ -54,6 +84,10 @@ extensions/source/propctrlr/propertyhandler.hxx:80
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/scanner/scanner.hxx:46
ScannerManager maProtector osl::Mutex
+filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
+ XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
+filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
+ XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
framework/inc/dispatch/oxt_handler.hxx:95
framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
include/comphelper/MasterPropertySet.hxx:38
@@ -131,7 +165,7 @@ sfx2/source/doc/doctempl.cxx:119
starmath/inc/view.hxx:224
SmViewShell maGraphicController class SmGraphicController
svtools/source/svhtml/htmlkywd.cxx:558
- HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo/svtools/source/svhtml/htmlkywd.cxx:558:5)
+ HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo2/svtools/source/svhtml/htmlkywd.cxx:558:5)
svtools/source/svhtml/htmlkywd.cxx:560
HTML_OptionEntry::(anonymous) sToken const sal_Char *
svtools/source/svhtml/htmlkywd.cxx:561
diff --git a/compilerplugins/clang/unusedfields.writeonly.results b/compilerplugins/clang/unusedfields.writeonly.results
index 7c0309860bf8..e4243a5f38ed 100644
--- a/compilerplugins/clang/unusedfields.writeonly.results
+++ b/compilerplugins/clang/unusedfields.writeonly.results
@@ -1,3 +1,9 @@
+basctl/source/basicide/basicbox.hxx:69
+ basctl::DocListenerBox m_aNotifier class basctl::DocumentEventNotifier
+basctl/source/inc/basidesh.hxx:85
+ basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
+basctl/source/inc/bastype2.hxx:180
+ basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/dlged.hxx:121
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
basegfx/source/polygon/b2dtrapezoid.cxx:201
@@ -42,6 +48,8 @@ canvas/source/vcl/impltools.hxx:117
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
chart2/source/controller/inc/RangeSelectionListener.hxx:62
chart::RangeSelectionListener m_aControllerLockGuard class chart::ControllerLockGuardUNO
+chart2/source/inc/LifeTime.hxx:198
+ apphelper::LifeTimeGuard m_guard osl::ClearableMutexGuard
chart2/source/view/inc/GL3DRenderer.hxx:54
chart::opengl3D::MaterialParameters pad float
chart2/source/view/inc/GL3DRenderer.hxx:55
@@ -76,10 +84,16 @@ compilerplugins/clang/test/salbool.cxx:15
S b sal_Bool
compilerplugins/clang/test/unnecessaryoverride-dtor.hxx:42
IncludedDerived3 m rtl::Reference<Incomplete>
+configmgr/source/components.cxx:163
+ configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx:55
connectivity::mozab::ProfileStruct product enum com::sun::star::mozilla::MozillaProductType
+connectivity/source/inc/dbase/DTable.hxx:60
+ connectivity::dbase::ODbaseTable::DBFHeader db_aedat sal_uInt8 [3]
+connectivity/source/inc/dbase/DTable.hxx:70
+ connectivity::dbase::ODbaseTable::DBFColumn db_adr sal_uInt32
connectivity/source/inc/OTypeInfo.hxx:31
connectivity::OTypeInfo aTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:32
@@ -110,6 +124,10 @@ connectivity/source/inc/OTypeInfo.hxx:49
connectivity::OTypeInfo bCaseSensitive _Bool
connectivity/source/inc/OTypeInfo.hxx:50
connectivity::OTypeInfo bUnsigned _Bool
+cppcanvas/source/mtfrenderer/emfpbrush.hxx:102
+ cppcanvas::internal::EMFPBrush wrapMode sal_Int32
+cppcanvas/source/mtfrenderer/emfppen.hxx:41
+ cppcanvas::internal::EMFPPen pen_transformation struct cppcanvas::internal::XForm
cppu/source/threadpool/threadpool.cxx:377
_uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
@@ -160,8 +178,14 @@ 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/inc/cuihyperdlg.hxx:43
+ SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
+cui/source/inc/cuihyperdlg.hxx:63
+ SvxHpLinkDlg maCtrl class SvxHlinkCtrl
cui/source/inc/cuitabarea.hxx:251
SvxAreaTabPage maFixed_ChangeType enum ChangeType
+dbaccess/source/core/dataaccess/documentdefinition.cxx:298
+ dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
dbaccess/source/sdbtools/connection/connectiondependent.hxx:116
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
dbaccess/source/sdbtools/connection/connectiontools.hxx:48
@@ -170,6 +194,10 @@ dbaccess/source/sdbtools/connection/objectnames.hxx:44
sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/tablename.cxx:56
sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
+dbaccess/source/ui/misc/dbaundomanager.cxx:137
+ dbaui::UndoManagerMethodGuard m_aGuard ::osl::ResettableMutexGuard
+desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:121
+ dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
embeddedobj/source/inc/oleembobj.hxx:127
OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:139
@@ -200,10 +228,66 @@ filter/source/graphicfilter/icgm/chart.hxx:46
DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:47
DataNode nBoxY2 sal_Int16
+filter/source/graphicfilter/ipsd/ipsd.cxx:44
+ (anonymous) nPad1 sal_uInt32
+filter/source/graphicfilter/ipsd/ipsd.cxx:45
+ (anonymous) nPad2 sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:33
+ TGAFileHeader nColorMapFirstEntryIndex sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:36
+ TGAFileHeader nColorMapXOrigin sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:37
+ TGAFileHeader nColorMapYOrigin sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:49
+ TGAFileFooter nDeveloperDirectoryOffset sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:51
+ TGAFileFooter nPadByte sal_uInt8
+filter/source/graphicfilter/itga/itga.cxx:52
+ TGAFileFooter nStringTerminator sal_uInt8
+filter/source/graphicfilter/itga/itga.cxx:60
+ TGAExtension sAuthorName char [41]
+filter/source/graphicfilter/itga/itga.cxx:61
+ TGAExtension sAuthorComment char [324]
+filter/source/graphicfilter/itga/itga.cxx:62
+ TGAExtension sDateTimeStamp char [12]
+filter/source/graphicfilter/itga/itga.cxx:64
+ TGAExtension sSoftwareID char [41]
+filter/source/graphicfilter/itga/itga.cxx:65
+ TGAExtension nSoftwareVersionNumber sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:66
+ TGAExtension nSoftwareVersionLetter sal_uInt8
+filter/source/graphicfilter/itga/itga.cxx:67
+ TGAExtension nKeyColor sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:68
+ TGAExtension nPixelAspectRatioNumerator sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:69
+ TGAExtension nPixelAspectRatioDeNumerator sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:70
+ TGAExtension nGammaValueNumerator sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:71
+ TGAExtension nGammaValueDeNumerator sal_uInt16
+filter/source/graphicfilter/itga/itga.cxx:72
+ TGAExtension nColorCorrectionOffset sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:73
+ TGAExtension nPostageStampOffset sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:74
+ TGAExtension nScanLineOffset sal_uInt32
+filter/source/graphicfilter/itga/itga.cxx:75
+ TGAExtension nAttributesType sal_uInt8
+filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
+ XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
+filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
+ XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
formula/source/core/api/FormulaCompiler.cxx:49
formula::(anonymous namespace)::FormulaCompilerRecursionGuard rRecursion short &
framework/inc/dispatch/oxt_handler.hxx:95
framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
+framework/inc/services/layoutmanager.hxx:270
+ framework::LayoutManager m_bGlobalSettings _Bool
+framework/source/layoutmanager/toolbarlayoutmanager.hxx:287
+ framework::ToolbarLayoutManager m_pGlobalSettings class framework::GlobalSettings *
+framework/source/layoutmanager/toolbarlayoutmanager.hxx:292
+ framework::ToolbarLayoutManager m_bGlobalSettings _Bool
hwpfilter/source/drawdef.h:69
BAREHWPDOProperty line_pstyle int
hwpfilter/source/drawdef.h:70
@@ -254,6 +338,18 @@ hwpfilter/source/drawdef.h:113
RotationProperty rot_originy int
hwpfilter/source/drawdef.h:114
RotationProperty parall ZZParall
+hwpfilter/source/drawdef.h:158
+ HWPDOProperty offset1 ZZPoint
+hwpfilter/source/drawdef.h:159
+ HWPDOProperty offset2 ZZPoint
+hwpfilter/source/drawdef.h:209
+ HWPDrawingObject offset ZZPoint
+hwpfilter/source/drawdef.h:218
+ HWPDrawingObject vrect ZZRect
+hwpfilter/source/hbox.h:131
+ DateFormat format hchar [40]
+hwpfilter/source/hbox.h:168
+ Tab leader unsigned short
hwpfilter/source/hbox.h:197
CellLine key unsigned char
hwpfilter/source/hbox.h:198
@@ -268,56 +364,320 @@ hwpfilter/source/hbox.h:202
CellLine color short
hwpfilter/source/hbox.h:203
CellLine shade unsigned char
+hwpfilter/source/hbox.h:219
+ Cell p short
+hwpfilter/source/hbox.h:228
+ Cell diagonal unsigned char
+hwpfilter/source/hbox.h:295
+ FBox option short
+hwpfilter/source/hbox.h:296
+ FBox ctrl_ch hchar
+hwpfilter/source/hbox.h:303
+ FBox cap_margin short
+hwpfilter/source/hbox.h:305
+ FBox smart_linesp unsigned char
+hwpfilter/source/hbox.h:334
+ TxtBox dummy1 short
hwpfilter/source/hbox.h:335
TxtBox cap_len short
hwpfilter/source/hbox.h:336
TxtBox next_box short
-hwpfilter/source/hbox.h:536
- PicDefFile path char [256]
+hwpfilter/source/hbox.h:337
+ TxtBox dummy2 short
+hwpfilter/source/hbox.h:338
+ TxtBox reserved1 unsigned char
+hwpfilter/source/hbox.h:343
+ TxtBox num short
+hwpfilter/source/hbox.h:345
+ TxtBox dummy3 short
+hwpfilter/source/hbox.h:346
+ TxtBox baseline short
+hwpfilter/source/hbox.h:360
+ TxtBox protect short
hwpfilter/source/hbox.h:537
- PicDefFile img void *
+ PicDefFile path char [256]
hwpfilter/source/hbox.h:538
+ PicDefFile img void *
+hwpfilter/source/hbox.h:539
PicDefFile skipfind _Bool
-hwpfilter/source/hbox.h:554
- PicDefOle embname char [16]
hwpfilter/source/hbox.h:555
+ PicDefOle embname char [16]
+hwpfilter/source/hbox.h:556
PicDefOle hwpole void *
-hwpfilter/source/hbox.h:579
+hwpfilter/source/hbox.h:566
+ PicDefDraw vrect ZZRect
+hwpfilter/source/hbox.h:567
+ PicDefDraw mbrcnt int
+hwpfilter/source/hbox.h:580
(anonymous) picfile struct PicDefFile
-hwpfilter/source/hbox.h:581
+hwpfilter/source/hbox.h:582
(anonymous) picole struct PicDefOle
+hwpfilter/source/hbox.h:598
+ Picture reserved hchar [2]
+hwpfilter/source/hbox.h:605
+ Picture dummy1 short
+hwpfilter/source/hbox.h:606
+ Picture dummy2 short
+hwpfilter/source/hbox.h:607
+ Picture reserved1 uchar
+hwpfilter/source/hbox.h:615
+ Picture num short
+hwpfilter/source/hbox.h:650
+ Line reserved hchar [2]
+hwpfilter/source/hbox.h:653
+ Line reserved2 char [8]
+hwpfilter/source/hbox.h:669
+ Hidden reserved hchar [2]
+hwpfilter/source/hbox.h:672
+ Hidden info unsigned char [8]
+hwpfilter/source/hbox.h:686
+ HeaderFooter reserved hchar [2]
+hwpfilter/source/hbox.h:689
+ HeaderFooter info unsigned char [8]
+hwpfilter/source/hbox.h:716
+ Footnote reserved hchar [2]
+hwpfilter/source/hbox.h:719
+ Footnote info unsigned char [8]
+hwpfilter/source/hbox.h:776
+ NewNum type unsigned short
+hwpfilter/source/hbox.h:777
+ NewNum number unsigned short
+hwpfilter/source/hbox.h:816
+ PageNumCtrl kind unsigned short
+hwpfilter/source/hbox.h:820
+ PageNumCtrl what unsigned short
+hwpfilter/source/hbox.h:851
+ Compose compose hchar [3]
+hwpfilter/source/hbox.h:868
+ Hyphen width hchar
+hwpfilter/source/hbox.h:884
+ TocMark kind hchar
+hwpfilter/source/hbox.h:902
+ IndexMark pgno unsigned short
+hwpfilter/source/hinfo.h:72
+ PaperBackInfo luminance int
+hwpfilter/source/hinfo.h:73
+ PaperBackInfo contrast int
+hwpfilter/source/hinfo.h:74
+ PaperBackInfo effect char
+hwpfilter/source/hinfo.h:108
+ DocChainInfo chain_page_no unsigned char
+hwpfilter/source/hinfo.h:109
+ DocChainInfo chain_footnote_no unsigned char
+hwpfilter/source/hinfo.h:154
+ HWPInfo cur_col short
+hwpfilter/source/hinfo.h:158
+ HWPInfo cur_row short
+hwpfilter/source/hinfo.h:168
+ HWPInfo readonly short
+hwpfilter/source/hinfo.h:173
+ HWPInfo chain_info struct DocChainInfo
+hwpfilter/source/hinfo.h:182
+ HWPInfo countfn short
+hwpfilter/source/hinfo.h:185
+ HWPInfo fnchar unsigned char
+hwpfilter/source/hinfo.h:194
+ HWPInfo empty_line_hide unsigned char
+hwpfilter/source/hinfo.h:195
+ HWPInfo table_move unsigned char
+hwpfilter/source/hinfo.h:197
+ HWPInfo reserved3 unsigned char
+hwpfilter/source/hinfo.h:233
+ CharShape reserved unsigned char [4]
+hwpfilter/source/hinfo.h:277
+ ParaShape condense unsigned char
+hwpfilter/source/hinfo.h:283
+ ParaShape outline_continue unsigned char
+hwpfilter/source/hpara.h:61
+ LineInfo pos unsigned short
hwpfilter/source/hpara.h:70
LineInfo softbreak unsigned short
+hwpfilter/source/hpara.h:105
+ HWPPara pstyno unsigned char
+hwpfilter/source/htags.h:31
+ EmPicture type char [16]
+hwpfilter/source/htags.h:46
+ HyperText macro char [325]
+hwpfilter/source/htags.h:48
+ HyperText reserve char [3]
+idl/inc/database.hxx:103
+ SvIdlDataBase aIFaceName class rtl::OString
+include/comphelper/componentbase.hxx:130
+ comphelper::ComponentMethodGuard m_aMutexGuard ::osl::ResettableMutexGuard
include/comphelper/MasterPropertySet.hxx:38
comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
+include/connectivity/OSubComponent.hxx:54
+ connectivity::OSubComponent m_xParent css::uno::Reference<css::uno::XInterface>
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
drawinglayer::primitive2d::TextLayouterDevice maSolarGuard class SolarMutexGuard
include/editeng/outliner.hxx:405
DrawPortionInfo mnPara sal_Int32
include/editeng/unotext.hxx:606
SvxUnoTextRangeEnumeration mxParentText css::uno::Reference<css::text::XText>
-include/filter/msfilter/svdfppt.hxx:865
+include/filter/msfilter/mstoolbar.hxx:121
+ TBCExtraInfo wstrHelpFile class WString
+include/filter/msfilter/mstoolbar.hxx:122
+ TBCExtraInfo idHelpContext sal_Int32
+include/filter/msfilter/mstoolbar.hxx:123
+ TBCExtraInfo wstrTag class WString
+include/filter/msfilter/mstoolbar.hxx:125
+ TBCExtraInfo wstrParam class WString
+include/filter/msfilter/mstoolbar.hxx:126
+ TBCExtraInfo tbcu sal_Int8
+include/filter/msfilter/mstoolbar.hxx:127
+ TBCExtraInfo tbmg sal_Int8
+include/filter/msfilter/mstoolbar.hxx:144
+ TBCGeneralInfo descriptionText class WString
+include/filter/msfilter/mstoolbar.hxx:161
+ TBCBitMap cbDIB sal_Int32
+include/filter/msfilter/mstoolbar.hxx:191
+ TBCCDData cwstrMRU sal_Int16
+include/filter/msfilter/mstoolbar.hxx:192
+ TBCCDData iSel sal_Int16
+include/filter/msfilter/mstoolbar.hxx:193
+ TBCCDData cLines sal_Int16
+include/filter/msfilter/mstoolbar.hxx:194
+ TBCCDData dxWidth sal_Int16
+include/filter/msfilter/mstoolbar.hxx:195
+ TBCCDData wstrEdit class WString
+include/filter/msfilter/mstoolbar.hxx:260
+ TBCHeader bSignature sal_Int8
+include/filter/msfilter/mstoolbar.hxx:261
+ TBCHeader bVersion sal_Int8
+include/filter/msfilter/mstoolbar.hxx:266
+ TBCHeader bPriority sal_uInt8
+include/filter/msfilter/mstoolbar.hxx:304
+ TB bSignature sal_uInt8
+include/filter/msfilter/mstoolbar.hxx:305
+ TB bVersion sal_uInt8
+include/filter/msfilter/mstoolbar.hxx:307
+ TB ltbid sal_Int32
+include/filter/msfilter/mstoolbar.hxx:309
+ TB cRowsDefault sal_uInt16
+include/filter/msfilter/mstoolbar.hxx:328
+ SRECT left sal_Int16
+include/filter/msfilter/mstoolbar.hxx:329
+ SRECT top sal_Int16
+include/filter/msfilter/mstoolbar.hxx:330
+ SRECT right sal_Int16
+include/filter/msfilter/mstoolbar.hxx:331
+ SRECT bottom sal_Int16
+include/filter/msfilter/mstoolbar.hxx:341
+ TBVisualData tbds sal_Int8
+include/filter/msfilter/mstoolbar.hxx:342
+ TBVisualData tbv sal_Int8
+include/filter/msfilter/mstoolbar.hxx:343
+ TBVisualData tbdsDock sal_Int8
+include/filter/msfilter/mstoolbar.hxx:344
+ TBVisualData iRow sal_Int8
+include/filter/msfilter/mstoolbar.hxx:346
+ TBVisualData rcDock class SRECT
+include/filter/msfilter/mstoolbar.hxx:347
+ TBVisualData rcFloat class SRECT
+include/filter/msfilter/svdfppt.hxx:79
+ PptCurrentUserAtom nMagic sal_uInt32
+include/filter/msfilter/svdfppt.hxx:81
+ PptCurrentUserAtom nDocFileVersion sal_uInt16
+include/filter/msfilter/svdfppt.hxx:82
+ PptCurrentUserAtom nMajorVersion sal_uInt8
+include/filter/msfilter/svdfppt.hxx:83
+ PptCurrentUserAtom nMinorVersion sal_uInt8
+include/filter/msfilter/svdfppt.hxx:109
+ SdHyperlinkEntry nPrivate1 sal_Int32
+include/filter/msfilter/svdfppt.hxx:110
+ SdHyperlinkEntry nPrivate2 sal_Int32
+include/filter/msfilter/svdfppt.hxx:111
+ SdHyperlinkEntry nPrivate3 sal_Int32
+include/filter/msfilter/svdfppt.hxx:112
+ SdHyperlinkEntry nInfo sal_Int32
+include/filter/msfilter/svdfppt.hxx:125
+ PptInteractiveInfoAtom nOleVerb sal_uInt8
+include/filter/msfilter/svdfppt.hxx:127
+ PptInteractiveInfoAtom nFlags sal_uInt8
+include/filter/msfilter/svdfppt.hxx:131
+ PptInteractiveInfoAtom nUnknown1 sal_uInt8
+include/filter/msfilter/svdfppt.hxx:132
+ PptInteractiveInfoAtom nUnknown2 sal_uInt8
+include/filter/msfilter/svdfppt.hxx:133
+ PptInteractiveInfoAtom nUnknown3 sal_uInt8
+include/filter/msfilter/svdfppt.hxx:191
+ PptDocumentAtom n1stPageNumber sal_uInt16
+include/filter/msfilter/svdfppt.hxx:275
+ PptFontEntityAtom lfClipPrecision sal_uInt8
+include/filter/msfilter/svdfppt.hxx:276
+ PptFontEntityAtom lfQuality sal_uInt8
+include/filter/msfilter/svdfppt.hxx:290
+ PptUserEditAtom nLastSlideID sal_Int32
+include/filter/msfilter/svdfppt.hxx:291
+ PptUserEditAtom nVersion sal_uInt32
+include/filter/msfilter/svdfppt.hxx:334
+ PptSlidePersistEntry aNotesAtom struct PptNotesAtom
+include/filter/msfilter/svdfppt.hxx:678
+ PPTExtParaLevel mpfPP10Ext sal_uInt32
+include/filter/msfilter/svdfppt.hxx:680
+ PPTExtParaLevel mcfPP10Ext sal_uInt32
+include/filter/msfilter/svdfppt.hxx:837
+ PPTStyleSheet maTxSI struct PPTTextSpecInfo
+include/filter/msfilter/svdfppt.hxx:863
ImplPPTParaPropSet nDontKnow1 sal_uInt32
-include/filter/msfilter/svdfppt.hxx:866
+include/filter/msfilter/svdfppt.hxx:864
ImplPPTParaPropSet nDontKnow2 sal_uInt32
-include/filter/msfilter/svdfppt.hxx:867
+include/filter/msfilter/svdfppt.hxx:865
ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
+include/filter/msfilter/svdfppt.hxx:900
+ ImplPPTCharPropSet mnANSITypeface sal_uInt16
+include/filter/msfilter/svdfppt.hxx:1011
+ StyleTextProp9 mpfPP10Ext sal_uInt32
+include/filter/msfilter/svdfppt.hxx:1013
+ StyleTextProp9 mncfPP10Ext sal_uInt32
+include/filter/msfilter/svdfppt.hxx:1015
+ StyleTextProp9 mnPP10Ext sal_uInt32
+include/filter/msfilter/svdfppt.hxx:1016
+ StyleTextProp9 mfBidi sal_uInt16
include/LibreOfficeKit/LibreOfficeKitGtk.h:33
_LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
_LOKDocViewClass parent_class GtkDrawingAreaClass
-include/sfx2/msg.hxx:116
+include/oox/ole/axbinaryreader.hxx:238
+ oox::ole::AxBinaryPropertyReader maDummyPicData oox::StreamDataSequence
+include/oox/ole/axbinaryreader.hxx:239
+ oox::ole::AxBinaryPropertyReader maDummyString class rtl::OUString
+include/oox/ole/axbinaryreader.hxx:240
+ oox::ole::AxBinaryPropertyReader maDummyArrayString oox::ole::AxArrayString
+include/oox/ole/axcontrol.hxx:603
+ oox::ole::AxTabStripModel mnTabData sal_uInt32
+include/oox/ole/axcontrol.hxx:604
+ oox::ole::AxTabStripModel mnVariousPropertyBits sal_uInt32
+include/oox/ole/axcontrol.hxx:606
+ oox::ole::AxTabStripModel maTabNames std::vector< ::rtl::OUString>
+include/oox/ole/axcontrol.hxx:826
+ oox::ole::AxContainerModelBase mnBorderColor sal_uInt32
+include/oox/ole/axcontrol.hxx:829
+ oox::ole::AxContainerModelBase mnCycleType sal_Int32
+include/oox/ole/axcontrol.hxx:831
+ oox::ole::AxContainerModelBase mnPicAlign sal_Int32
+include/oox/ole/axcontrol.hxx:832
+ oox::ole::AxContainerModelBase mnPicSizeMode sal_Int32
+include/oox/ole/axcontrol.hxx:833
+ oox::ole::AxContainerModelBase mbPicTiling _Bool
+include/oox/ole/vbacontrol.hxx:100
+ oox::ole::VbaSiteModel mnHelpContextId sal_Int32
+include/oox/ole/vbacontrol.hxx:105
+ oox::ole::VbaSiteModel mnGroupId sal_uInt16
+include/sfx2/msg.hxx:117
SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
-include/sfx2/msg.hxx:118
+include/sfx2/msg.hxx:119
SfxType0 nAttribs sal_uInt16
-include/sfx2/sidebar/ControllerItem.hxx:91
- sfx2::sidebar::ControllerItem mxFrame css::uno::Reference<css::frame::XFrame>
include/svtools/genericunodialog.hxx:170
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
include/svtools/unoevent.hxx:159
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svx/AccessibleShapeInfo.hxx:66
accessibility::AccessibleShapeInfo mpChildrenManager class accessibility::IAccessibleParent *
+include/svx/bmpmask.hxx:129
+ SvxBmpMask aSelItem class SvxBmpMaskSelectItem
+include/svx/imapdlg.hxx:118
+ SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/vcl/uitest/uiobject.hxx:241
TabPageUIObject mxTabPage VclPtr<class TabPage>
include/vcl/vclptr.hxx:58
@@ -344,6 +704,350 @@ lingucomponent/source/languageguessing/simpleguesser.cxx:96
textcat_t output char [1024]
lotuswordpro/source/filter/clone.hxx:23
detail::has_clone::(anonymous) a char [2]
+lotuswordpro/source/filter/lwpcelllayout.hxx:124
+ LwpCellLayout cLayDiagonalLine class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:97
+ LwpTextStyle m_aDescription class LwpAtomHolder
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:98
+ LwpTextStyle m_aLangOverride class LwpTextLanguageOverride
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:99
+ LwpTextStyle m_aTxtAttrOverride class LwpTextAttributeOverride
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:101
+ LwpTextStyle m_aCharacterBorderOverride class LwpCharacterBorderOverride
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:102
+ LwpTextStyle m_aAmikakeOverride class LwpAmikakeOverride
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:104
+ LwpTextStyle m_CharacterBorder class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:105
+ LwpTextStyle m_Amikake class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:106
+ LwpTextStyle m_FaceStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:108
+ LwpTextStyle m_SizeStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:109
+ LwpTextStyle m_AttributeStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:110
+ LwpTextStyle m_FontStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:111
+ LwpTextStyle m_CharacterBorderStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcharacterstyle.hxx:112
+ LwpTextStyle m_AmikakeStyle class LwpObjectID
+lotuswordpro/source/filter/lwpcontent.hxx:82
+ LwpContent m_PreviousEnumerated class LwpObjectID
+lotuswordpro/source/filter/lwpdivinfo.hxx:95
+ LwpDivInfo m_LayoutID class LwpObjectID
+lotuswordpro/source/filter/lwpdivinfo.hxx:97
+ LwpDivInfo m_ExternalName class LwpAtomHolder
+lotuswordpro/source/filter/lwpdivinfo.hxx:98
+ LwpDivInfo m_ExternalType class LwpAtomHolder
+lotuswordpro/source/filter/lwpdivinfo.hxx:104
+ LwpDivInfo m_TabColor class LwpColor
+lotuswordpro/source/filter/lwpdivopts.hxx:112
+ LwpDivisionOptions m_HyphOpts class LwpHyphenOptions
+lotuswordpro/source/filter/lwpdivopts.hxx:114
+ LwpDivisionOptions m_Lang class LwpTextLanguage
+lotuswordpro/source/filter/lwpdoc.hxx:107
+ LwpDocument m_DivOpts class LwpObjectID
+lotuswordpro/source/filter/lwpdoc.hxx:111
+ LwpDocument m_Epoch class LwpAtomHolder
+lotuswordpro/source/filter/lwpdoc.hxx:115
+ LwpDocument m_STXInfo class LwpObjectID
+lotuswordpro/source/filter/lwpdoc.hxx:230
+ LwpDocSock m_Doc class LwpObjectID
+lotuswordpro/source/filter/lwpdocdata.hxx:68
+ LwpDocOptions encrypt1password class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:69
+ LwpDocOptions encrypt2password class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:70
+ LwpDocOptions characterSet class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:71
+ LwpDocOptions grammerSet class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:84
+ LwpDocInfo cpVerDocInfo class LwpObjectID
+lotuswordpro/source/filter/lwpdocdata.hxx:90
+ LwpDocControl cGreeting class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:99
+ LwpDocControl cDocControlOnlyEditor class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:111
+ LwpFontDescriptionOverrideBase cColor class LwpColor
+lotuswordpro/source/filter/lwpdocdata.hxx:112
+ LwpFontDescriptionOverrideBase cBackgroundColor class LwpColor
+lotuswordpro/source/filter/lwpdocdata.hxx:128
+ LwpFontDescriptionOverride cFaceName class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:129
+ LwpFontDescriptionOverride cAltFaceName class LwpAtomHolder
+lotuswordpro/source/filter/lwpdocdata.hxx:146
+ LwpEditorAttr cInitials class LwpAtomHolder
+lotuswordpro/source/filter/lwpdrawobj.hxx:294
+ LwpDrawTextBox m_aVector struct SdwPoint
+lotuswordpro/source/filter/lwpfilehdr.hxx:68
+ LwpFileHeader m_nAppRevision sal_uInt16
+lotuswordpro/source/filter/lwpfilehdr.hxx:69
+ LwpFileHeader m_nAppReleaseNo sal_uInt16
+lotuswordpro/source/filter/lwpfilehdr.hxx:70
+ LwpFileHeader m_nRequiredAppRevision sal_uInt16
+lotuswordpro/source/filter/lwpfilehdr.hxx:71
+ LwpFileHeader m_nRequiredFileRevision sal_uInt16
+lotuswordpro/source/filter/lwpfootnote.hxx:248
+ LwpFootnoteOptions m_EndnoteDivisionNumbering class LwpFootnoteNumberOptions
+lotuswordpro/source/filter/lwpfootnote.hxx:249
+ LwpFootnoteOptions m_EndnoteDivisionGroupNumbering class LwpFootnoteNumberOptions
+lotuswordpro/source/filter/lwpfootnote.hxx:252
+ LwpFootnoteOptions m_FootnoteContinuedSeparator class LwpFootnoteSeparatorOptions
+lotuswordpro/source/filter/lwpfoundry.hxx:93
+ LwpObjectManager m_Division class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:128
+ LwpContentManager m_EnumTail class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:129
+ LwpContentManager m_OleObjCount class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:132
+ LwpContentManager m_GrapTail class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:133
+ LwpContentManager m_OleHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:134
+ LwpContentManager m_OleTail class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:149
+ LwpPieceManager m_GeometryPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:150
+ LwpPieceManager m_ScalePieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:151
+ LwpPieceManager m_MarginsPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:152
+ LwpPieceManager m_ColumnsPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:153
+ LwpPieceManager m_BorderStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:154
+ LwpPieceManager m_GutterStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:155
+ LwpPieceManager m_BackgroundStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:156
+ LwpPieceManager m_JoinStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:157
+ LwpPieceManager m_ShadowPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:158
+ LwpPieceManager m_NumericsPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:159
+ LwpPieceManager m_RelativityPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:160
+ LwpPieceManager m_AlignmentPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:161
+ LwpPieceManager m_IndentPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:162
+ LwpPieceManager m_ParaBorderPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:163
+ LwpPieceManager m_SpacingPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:164
+ LwpPieceManager m_BreaksPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:165
+ LwpPieceManager m_NumberingPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:166
+ LwpPieceManager m_TabPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:167
+ LwpPieceManager m_CharacterBorderPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:168
+ LwpPieceManager m_AmikakePieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:170
+ LwpPieceManager m_ParaBackgroundPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:171
+ LwpPieceManager m_ExternalBorderStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:172
+ LwpPieceManager m_ExternalJoinStuffPieceList class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:207
+ LwpFoundry m_ObjMgr class LwpObjectManager
+lotuswordpro/source/filter/lwpfoundry.hxx:208
+ LwpFoundry m_MarkerHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:209
+ LwpFoundry m_FootnoteMgr class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:217
+ LwpFoundry m_DefaultClickStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:220
+ LwpFoundry m_TableStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:222
+ LwpFoundry m_DftFrameStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:223
+ LwpFoundry m_DftPageStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:224
+ LwpFoundry m_DftTableStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:225
+ LwpFoundry m_DftCellStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:226
+ LwpFoundry m_DftColumnStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:227
+ LwpFoundry m_DftLeftColumnStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:228
+ LwpFoundry m_DftRighColumnStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:231
+ LwpFoundry m_DdeLinkHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:232
+ LwpFoundry m_DirtBagHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:233
+ LwpFoundry m_NamedOutlineSeqHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:234
+ LwpFoundry m_EnumLayoutHead class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:235
+ LwpFoundry m_EnumLayoutTail class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:237
+ LwpFoundry m_NamedObjects class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:240
+ LwpFoundry m_SmartTextMgr class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:246
+ LwpFoundry m_DftDropCapStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:247
+ LwpFoundry m_DftHeaderStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfoundry.hxx:249
+ LwpFoundry m_DftFooterStyle class LwpObjectID
+lotuswordpro/source/filter/lwpfrib.hxx:75
+ ModifierInfo Language class LwpTextLanguageOverride
+lotuswordpro/source/filter/lwpfribtext.hxx:169
+ LwpFribDocVar m_aName class LwpAtomHolder
+lotuswordpro/source/filter/lwplayout.hxx:235
+ LwpVirtualLayout m_NextEnumerated class LwpObjectID
+lotuswordpro/source/filter/lwplayout.hxx:236
+ LwpVirtualLayout m_PreviousEnumerated class LwpObjectID
+lotuswordpro/source/filter/lwplayout.hxx:327
+ LwpLayoutMisc m_aContentStyle class LwpAtomHolder
+lotuswordpro/source/filter/lwplayout.hxx:404
+ LwpMiddleLayout m_aStyleStuff class LwpLayoutStyle
+lotuswordpro/source/filter/lwplayout.hxx:405
+ LwpMiddleLayout m_aMiscStuff class LwpLayoutMisc
+lotuswordpro/source/filter/lwplayout.hxx:411
+ LwpMiddleLayout m_LayExtBorderStuff class LwpObjectID
+lotuswordpro/source/filter/lwplayout.hxx:434
+ LwpLayout m_LayJoinStuff class LwpObjectID
+lotuswordpro/source/filter/lwplayout.hxx:436
+ LwpLayout m_LayExtJoinStuff class LwpObjectID
+lotuswordpro/source/filter/lwplayout.hxx:501
+ LwpPlacableLayout m_Script class LwpAtomHolder
+lotuswordpro/source/filter/lwplaypiece.hxx:99
+ LwpLayoutGeometry m_ContainerRotor class LwpRotor
+lotuswordpro/source/filter/lwplaypiece.hxx:146
+ LwpLayoutMargins m_ExtraMargins class LwpMargins
+lotuswordpro/source/filter/lwplaypiece.hxx:186
+ LwpExternalBorder m_LeftName class LwpAtomHolder
+lotuswordpro/source/filter/lwplaypiece.hxx:187
+ LwpExternalBorder m_TopName class LwpAtomHolder
+lotuswordpro/source/filter/lwplaypiece.hxx:188
+ LwpExternalBorder m_RightName class LwpAtomHolder
+lotuswordpro/source/filter/lwplaypiece.hxx:189
+ LwpExternalBorder m_BottomName class LwpAtomHolder
+lotuswordpro/source/filter/lwplaypiece.hxx:201
+ LwpLayoutExternalBorder m_ExtranalBorder class LwpExternalBorder
+lotuswordpro/source/filter/lwplaypiece.hxx:293
+ LwpJoinStuff m_Color class LwpColor
+lotuswordpro/source/filter/lwplaypiece.hxx:304
+ LwpLayoutJoins m_JoinStuff class LwpJoinStuff
+lotuswordpro/source/filter/lwpmarker.hxx:85
+ LwpMarker m_objLayout class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:86
+ LwpMarker m_objMarkerList class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:87
+ LwpMarker m_objContent class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:97
+ LwpFribRange m_StartPara class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:98
+ LwpFribRange m_EndPara class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:107
+ LwpStoryMarker m_Range class LwpFribRange
+lotuswordpro/source/filter/lwpmarker.hxx:164
+ LwpCHBlkMarker m_Mirror class LwpAtomHolder
+lotuswordpro/source/filter/lwpmarker.hxx:235
+ LwpFieldMark m_objFormulaStory class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:236
+ LwpFieldMark m_objResultContent class LwpObjectID
+lotuswordpro/source/filter/lwpmarker.hxx:260
+ LwpRubyMarker m_objLayout class LwpObjectID
+lotuswordpro/source/filter/lwpoleobject.hxx:105
+ LwpGraphicOleObject m_pPrevObj class LwpObjectID
+lotuswordpro/source/filter/lwpoleobject.hxx:106
+ LwpGraphicOleObject m_pNextObj class LwpObjectID
+lotuswordpro/source/filter/lwppagehint.hxx:75
+ LwpSLVListHead m_ListHead class LwpObjectID
+lotuswordpro/source/filter/lwppagehint.hxx:84
+ LwpContentHintHead m_ListHead class LwpSLVListHead
+lotuswordpro/source/filter/lwppagehint.hxx:93
+ LwpFootnoteSeenHead m_ListHead class LwpSLVListHead
+lotuswordpro/source/filter/lwppagehint.hxx:109
+ LwpPageHint m_ContentHints class LwpContentHintHead
+lotuswordpro/source/filter/lwppagehint.hxx:115
+ LwpPageHint m_BeforeText class LwpAtomHolder
+lotuswordpro/source/filter/lwppagehint.hxx:116
+ LwpPageHint m_AfterText class LwpAtomHolder
+lotuswordpro/source/filter/lwppagehint.hxx:119
+ LwpPageHint m_CurrentSection class LwpObjectID
+lotuswordpro/source/filter/lwppagehint.hxx:121
+ LwpPageHint m_FootnoteSeen class LwpFootnoteSeenHead
+lotuswordpro/source/filter/lwppagelayout.hxx:95
+ LwpPageLayout m_PrinterBinName class LwpAtomHolder
+lotuswordpro/source/filter/lwppagelayout.hxx:98
+ LwpPageLayout m_PaperName class LwpAtomHolder
+lotuswordpro/source/filter/lwppara.hxx:95
+ LwpNotifyListPersistent m_Head class LwpObjectID
+lotuswordpro/source/filter/lwppara.hxx:104
+ LwpForked3NotifyList m_PersistentList class LwpNotifyListPersistent
+lotuswordpro/source/filter/lwppara.hxx:197
+ LwpPara m_Hint class LwpPoint
+lotuswordpro/source/filter/lwpparastyle.hxx:116
+ LwpParaStyle m_KinsokuOptsOverride class LwpKinsokuOptsOverride
+lotuswordpro/source/filter/lwprowlayout.hxx:125
+ LwpRowHeadingLayout cRowLayout class LwpObjectID
+lotuswordpro/source/filter/lwpsection.hxx:102
+ LwpSection m_Color class LwpColor
+lotuswordpro/source/filter/lwpsection.hxx:130
+ LwpIndexSection m_TextMarker class LwpAtomHolder
+lotuswordpro/source/filter/lwpsection.hxx:131
+ LwpIndexSection m_ParentName class LwpAtomHolder
+lotuswordpro/source/filter/lwpsection.hxx:132
+ LwpIndexSection m_DivisionName class LwpAtomHolder
+lotuswordpro/source/filter/lwpsection.hxx:133
+ LwpIndexSection m_SectionName class LwpAtomHolder
+lotuswordpro/source/filter/lwpstory.hxx:78
+ LwpStory m_FirstParaStyle class LwpObjectID
+lotuswordpro/source/filter/lwptable.hxx:103
+ LwpForkedNotifyList m_PersistentList class LwpNotifyListPersistent
+lotuswordpro/source/filter/lwptable.hxx:129
+ LwpTable m_CPNotifyList class LwpForkedNotifyList
+lotuswordpro/source/filter/lwptable.hxx:170
+ LwpParallelColumns cDefaultLeftColumnStyle class LwpObjectID
+lotuswordpro/source/filter/lwptable.hxx:171
+ LwpParallelColumns cDefaultRightColumnStyle class LwpObjectID
+lotuswordpro/source/filter/lwptblcell.hxx:113
+ LwpRowList cParent class LwpObjectID
+lotuswordpro/source/filter/lwptblcell.hxx:188
+ LwpFolder cParent class LwpObjectID
+lotuswordpro/source/filter/lwptblcell.hxx:189
+ LwpFolder cqTable class LwpObjectID
+lotuswordpro/source/filter/lwptblcell.hxx:206
+ LwpDependent cFormulaInfo class LwpObjectID
+lotuswordpro/source/filter/lwptoc.hxx:121
+ LwpTocSuperLayout m_TextMarker class LwpAtomHolder
+lotuswordpro/source/filter/lwptoc.hxx:122
+ LwpTocSuperLayout m_ParentName class LwpAtomHolder
+lotuswordpro/source/filter/lwptoc.hxx:123
+ LwpTocSuperLayout m_DivisionName class LwpAtomHolder
+lotuswordpro/source/filter/lwptoc.hxx:124
+ LwpTocSuperLayout m_SectionName class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:94
+ LwpAutoRunMacroOptions m_OpenName class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:95
+ LwpAutoRunMacroOptions m_CloseName class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:96
+ LwpAutoRunMacroOptions m_NewName class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:113
+ LwpMergeOptions m_RecordFile class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:114
+ LwpMergeOptions m_DescriptionFile class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:115
+ LwpMergeOptions m_Filter class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:131
+ LwpUIDocument m_ARMacroOpts class LwpAutoRunMacroOptions
+lotuswordpro/source/filter/lwpuidoc.hxx:132
+ LwpUIDocument m_MergedOpts class LwpMergeOptions
+lotuswordpro/source/filter/lwpuidoc.hxx:133
+ LwpUIDocument m_SheetFullPath class LwpAtomHolder
+lotuswordpro/source/filter/lwpuidoc.hxx:135
+ LwpUIDocument m_InitialSaveAsType class LwpAtomHolder
+mysqlc/source/mysqlc_connection.hxx:74
+ connectivity::mysqlc::ConnectionSettings quoteIdentifier rtl::OUString
oox/source/drawingml/chart/objectformatter.cxx:705
oox::drawingml::chart::ObjectFormatterData maModelObjHelper class oox::ModelObjectHelper
opencl/source/openclwrapper.cxx:302
@@ -354,19 +1058,25 @@ pyuno/source/module/pyuno_impl.hxx:226
pyuno::(anonymous) ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:326
pyuno::stRuntimeImpl ob_base PyObject
+registry/source/reflread.cxx:578
+ FieldList m_pCP class ConstantPool *
+registry/source/reflread.cxx:764
+ ReferenceList m_pCP class ConstantPool *
+registry/source/reflread.cxx:868
+ MethodList m_pCP class ConstantPool *
reportdesign/source/ui/inc/ReportWindow.hxx:54
rptui::OReportWindow m_pObjFac ::std::unique_ptr<DlgEdFactory>
-sal/osl/unx/thread.cxx:97
+sal/osl/unx/thread.cxx:93
osl_thread_priority_st m_Highest int
-sal/osl/unx/thread.cxx:98
+sal/osl/unx/thread.cxx:94
osl_thread_priority_st m_Above_Normal int
-sal/osl/unx/thread.cxx:99
+sal/osl/unx/thread.cxx:95
osl_thread_priority_st m_Normal int
-sal/osl/unx/thread.cxx:100
+sal/osl/unx/thread.cxx:96
osl_thread_priority_st m_Below_Normal int
-sal/osl/unx/thread.cxx:101
+sal/osl/unx/thread.cxx:97
osl_thread_priority_st m_Lowest int
-sal/osl/unx/thread.cxx:119
+sal/osl/unx/thread.cxx:115
osl_thread_global_st m_priority struct osl_thread_priority_st
sc/inc/compiler.hxx:258
ScCompiler::AddInMap pODFF const char *
@@ -374,17 +1084,39 @@ sc/inc/compiler.hxx:259
ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:261
ScCompiler::AddInMap pUpper const char *
+sc/inc/formulalogger.hxx:42
+ sc::FormulaLogger maMessages std::vector<OUString>
sc/qa/unit/ucalc_column.cxx:103
aInputs aName const char *
-sc/source/core/data/document.cxx:1248
+sc/source/core/data/document.cxx:1256
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch sc::AutoCalcSwitch
-sc/source/core/data/document.cxx:1249
+sc/source/core/data/document.cxx:1257
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk class ScBulkBroadcast
sc/source/core/data/formulacell.cxx:1778
StackCleaner pInt class ScInterpreter *
+sc/source/filter/excel/xltoolbar.hxx:23
+ TBCCmd cmdID sal_uInt16
+sc/source/filter/excel/xltoolbar.hxx:54
+ ScCTB ectbid sal_uInt32
+sc/source/filter/excel/xltoolbar.hxx:72
+ CTBS bSignature sal_uInt8
+sc/source/filter/excel/xltoolbar.hxx:73
+ CTBS bVersion sal_uInt8
+sc/source/filter/excel/xltoolbar.hxx:74
+ CTBS reserved1 sal_uInt16
+sc/source/filter/excel/xltoolbar.hxx:75
+ CTBS reserved2 sal_uInt16
+sc/source/filter/excel/xltoolbar.hxx:76
+ CTBS reserved3 sal_uInt16
+sc/source/filter/excel/xltoolbar.hxx:79
+ CTBS ictbView sal_uInt16
+sc/source/filter/inc/root.hxx:96
+ LOTUS_ROOT aActRange class ScRange
sc/source/filter/inc/sheetdatacontext.hxx:61
oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
-sc/source/ui/inc/docsh.hxx:441
+sc/source/filter/inc/XclImpChangeTrack.hxx:138
+ XclImpChTrFmlConverter rChangeTrack class XclImpChangeTrack &
+sc/source/ui/inc/docsh.hxx:438
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
scaddins/source/analysis/analysishelper.hxx:205
sca::analysis::FuncDataBase nUINameID sal_uInt16
@@ -422,26 +1154,42 @@ scaddins/source/pricing/pricing.hxx:73
sca::pricing::ScaFuncDataBase bDouble _Bool
scaddins/source/pricing/pricing.hxx:74
sca::pricing::ScaFuncDataBase bWithOpt _Bool
+sd/source/filter/ppt/ppt97animations.hxx:41
+ Ppt97AnimationInfoAtom nSlideCount sal_uInt16
+sd/source/filter/ppt/ppt97animations.hxx:47
+ Ppt97AnimationInfoAtom nOLEVerb sal_uInt8
+sd/source/filter/ppt/ppt97animations.hxx:50
+ Ppt97AnimationInfoAtom nUnknown1 sal_uInt8
+sd/source/filter/ppt/ppt97animations.hxx:51
+ Ppt97AnimationInfoAtom nUnknown2 sal_uInt8
sd/source/ui/remotecontrol/ZeroconfService.hxx:36
sd::ZeroconfService port uint
+sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136
+ sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString
sd/source/ui/slidesorter/inc/controller/SlsVisibleAreaManager.hxx:64
sd::slidesorter::controller::VisibleAreaManager::TemporaryDisabler mrVisibleAreaManager class sd::slidesorter::controller::VisibleAreaManager &
-sd/source/ui/table/TableDesignPane.hxx:110
+sd/source/ui/table/TableDesignPane.hxx:113
sd::TableDesignPane aImpl class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1335
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
-sd/source/ui/view/viewshel.cxx:1235
- sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1236
- sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
+ sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1237
- sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
+ sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1238
+ sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
+sd/source/ui/view/viewshel.cxx:1239
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:201
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
-sfx2/source/doc/doctempl.cxx:118
+sfx2/source/doc/doctempl.cxx:119
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
+sfx2/source/doc/docundomanager.cxx:198
+ sfx2::UndoManagerGuard m_guard class SfxModelGuard
+sfx2/source/inc/docundomanager.hxx:92
+ SfxModelGuard m_aGuard class SolarMutexResettableGuard
+sfx2/source/view/classificationcontroller.cxx:59
+ sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
slideshow/source/engine/activities/activityparameters.hxx:107
slideshow::internal::ActivityParameters mrEventQueue class slideshow::internal::EventQueue &
slideshow/source/engine/activities/activityparameters.hxx:119
@@ -460,17 +1208,45 @@ slideshow/source/engine/opengl/TransitionImpl.hxx:297
Vertex texcoord glm::vec2
slideshow/source/inc/transitioninfo.hxx:119
slideshow::internal::TransitionInfo mbScaleIsotrophically _Bool
+starmath/inc/view.hxx:163
+ SmCmdBoxWindow aController class SmEditController
starmath/inc/view.hxx:224
SmViewShell maGraphicController class SmGraphicController
svtools/source/svhtml/htmlkywd.cxx:558
- HTML_OptionEntry union HTML_OptionEntry::(anonymous at svtools/source/svhtml/htmlkywd.cxx:558:5)
+ HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo2/svtools/source/svhtml/htmlkywd.cxx:558:5)
svtools/source/svhtml/htmlkywd.cxx:560
HTML_OptionEntry::(anonymous) sToken const sal_Char *
svtools/source/svhtml/htmlkywd.cxx:561
HTML_OptionEntry::(anonymous) pUToken const class rtl::OUString *
svtools/source/uno/treecontrolpeer.cxx:69
LockGuard mrLock sal_Int32 &
-sw/qa/extras/uiwriter/uiwriter.cxx:3503
+svx/source/dialog/contimp.hxx:59
+ SvxSuperContourDlg aContourItem class SvxContourDlgItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:97
+ svx::sidebar::LinePropertyPanel maStyleControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:98
+ svx::sidebar::LinePropertyPanel maDashControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:100
+ svx::sidebar::LinePropertyPanel maStartControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:101
+ svx::sidebar::LinePropertyPanel maEndControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:102
+ svx::sidebar::LinePropertyPanel maLineEndListControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:103
+ svx::sidebar::LinePropertyPanel maLineStyleListControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:104
+ svx::sidebar::LinePropertyPanel maTransControl sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:105
+ svx::sidebar::LinePropertyPanel maEdgeStyle sfx2::sidebar::ControllerItem
+svx/source/sidebar/line/LinePropertyPanel.hxx:106
+ svx::sidebar::LinePropertyPanel maCapStyle sfx2::sidebar::ControllerItem
+svx/source/table/tablertfimporter.cxx:53
+ sdr::table::RTFCellDefault maItemSet class SfxItemSet
+sw/inc/doc.hxx:328
+ SwDoc mxForbiddenCharsTable rtl::Reference<SvxForbiddenCharactersTable>
+sw/inc/shellio.hxx:147
+ SwReader aFileName class rtl::OUString
+sw/qa/extras/uiwriter/uiwriter.cxx:3759
PortionItem msText class rtl::OUString
sw/source/core/crsr/crbm.cxx:64
(anonymous namespace)::CursorStateHelper m_aSaveState class SwCursorSaveState
@@ -500,6 +1276,8 @@ ucb/source/ucp/gio/gio_mount.hxx:51
OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:52
OOoMountOperationClass _gtk_reserved4 void (*)(void)
+unoidl/source/legacyprovider.cxx:87
+ unoidl::detail::(anonymous namespace)::Cursor manager_ rtl::Reference<Manager>
unoidl/source/unoidlprovider.cxx:672
unoidl::detail::(anonymous namespace)::UnoidlCursor reference1_ rtl::Reference<UnoidlProvider>
unoidl/source/unoidlprovider.cxx:673
@@ -516,9 +1294,13 @@ vcl/inc/salmenu.hxx:43
SalMenuButtonItem maImage class Image
vcl/inc/salmenu.hxx:44
SalMenuButtonItem maToolTipText class rtl::OUString
-vcl/source/gdi/jobset.cxx:35
+vcl/source/filter/wmf/enhwmf.cxx:325
+ (anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
+vcl/source/filter/wmf/enhwmf.cxx:326
+ (anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
+vcl/source/gdi/jobset.cxx:34
ImplOldJobSetupData cDeviceName char [32]
-vcl/source/gdi/jobset.cxx:36
+vcl/source/gdi/jobset.cxx:35
ImplOldJobSetupData cPortName char [32]
vcl/source/gdi/pdfwriter_impl.cxx:5448
(anonymous namespace)::(anonymous) extnID SECItem
@@ -534,11 +1316,11 @@ vcl/source/uitest/uno/uitest_uno.cxx:35
UITestUnoObj mpUITest std::unique_ptr<UITest>
vcl/unx/generic/dtrans/X11_clipboard.hxx:45
x11::X11Clipboard m_xSelectionManager css::uno::Reference<css::lang::XInitialization>
-vcl/unx/generic/dtrans/X11_dndcontext.hxx:41
+vcl/unx/generic/dtrans/X11_dndcontext.hxx:40
x11::DropTargetDropContext m_xManagerRef css::uno::Reference<XInterface>
-vcl/unx/generic/dtrans/X11_dndcontext.hxx:58
+vcl/unx/generic/dtrans/X11_dndcontext.hxx:56
x11::DropTargetDragContext m_xManagerRef css::uno::Reference<XInterface>
-vcl/unx/generic/dtrans/X11_dndcontext.hxx:74
+vcl/unx/generic/dtrans/X11_dndcontext.hxx:71
x11::DragSourceContext m_xManagerRef css::uno::Reference<XInterface>
vcl/unx/generic/gdi/x11cairotextrender.cxx:34
_XRegion size long
@@ -556,3 +1338,7 @@ vcl/unx/gtk/glomenu.cxx:20
GLOMenu parent_instance GMenuModel
writerfilter/source/rtftok/rtfdocumentimpl.hxx:220
writerfilter::rtftok::RTFParserState m_pDocumentImpl class writerfilter::rtftok::RTFDocumentImpl *
+xmloff/source/chart/SchXMLPlotAreaContext.hxx:170
+ SchXMLCoordinateRegionContext m_rPositioning class SchXMLPositionAttributesHelper &
+xmlsecurity/source/helper/ooxmlsecexporter.cxx:32
+ OOXMLSecExporter::Impl m_xComponentContext const uno::Reference<uno::XComponentContext> &
diff --git a/connectivity/source/drivers/file/FTables.cxx b/connectivity/source/drivers/file/FTables.cxx
index 4858817601d9..2722a1387ce9 100644
--- a/connectivity/source/drivers/file/FTables.cxx
+++ b/connectivity/source/drivers/file/FTables.cxx
@@ -45,12 +45,6 @@ void OTables::impl_refresh( )
static_cast<OFileCatalog&>(m_rParent).refreshTables();
}
-void OTables::disposing()
-{
-m_xMetaData.clear();
- OCollection::disposing();
-}
-
Any SAL_CALL OTables::queryInterface( const Type & rType )
{
if( rType == cppu::UnoType<XColumnLocate>::get()||
diff --git a/connectivity/source/drivers/jdbc/ResultSet.cxx b/connectivity/source/drivers/jdbc/ResultSet.cxx
index 5c6ba79e0e00..61703d6edcce 100644
--- a/connectivity/source/drivers/jdbc/ResultSet.cxx
+++ b/connectivity/source/drivers/jdbc/ResultSet.cxx
@@ -101,7 +101,6 @@ void java_sql_ResultSet::disposing()
OPropertySetHelper::disposing();
::osl::MutexGuard aGuard(m_aMutex);
-m_xMetaData.clear();
if( object )
{
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java enviroment has been deleted!");
diff --git a/connectivity/source/inc/file/FTables.hxx b/connectivity/source/inc/file/FTables.hxx
index d3e620ff2bfe..c8380134b4ff 100644
--- a/connectivity/source/inc/file/FTables.hxx
+++ b/connectivity/source/inc/file/FTables.hxx
@@ -32,20 +32,14 @@ namespace connectivity
public sdbcx::OCollection
{
protected:
- css::uno::Reference< css::sdbc::XDatabaseMetaData > m_xMetaData;
-
virtual sdbcx::ObjectType createObject(const OUString& _rName) override;
virtual void impl_refresh() override;
public:
OTables(const css::uno::Reference< css::sdbc::XDatabaseMetaData >& _rMetaData,::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex,
const TStringVector &_rVector) : sdbcx::OCollection(_rParent,_rMetaData->supportsMixedCaseQuotedIdentifiers(),_rMutex,_rVector)
- ,m_xMetaData(_rMetaData)
{}
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
-
- // only the name is identical to ::cppu::OComponentHelper
- virtual void SAL_CALL disposing() override;
};
}
}
diff --git a/connectivity/source/inc/java/sql/ResultSet.hxx b/connectivity/source/inc/java/sql/ResultSet.hxx
index 218d47c01a70..346f13262332 100644
--- a/connectivity/source/inc/java/sql/ResultSet.hxx
+++ b/connectivity/source/inc/java/sql/ResultSet.hxx
@@ -61,7 +61,6 @@ namespace connectivity
public ::comphelper::OPropertyArrayUsageHelper<java_sql_ResultSet>
{
css::uno::Reference< css::uno::XInterface> m_xStatement;
- css::uno::Reference< css::sdbc::XResultSetMetaData> m_xMetaData;
java::sql::ConnectionLog m_aLogger;
java_sql_Connection* m_pConnection;
diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx
index 360f6c19c19b..7d03d02f8d77 100644
--- a/cui/source/dialogs/iconcdlg.cxx
+++ b/cui/source/dialogs/iconcdlg.cxx
@@ -45,8 +45,7 @@ IconChoicePage::IconChoicePage( vcl::Window *pParent, const OString& rID,
const SfxItemSet* pItemSet )
: TabPage ( pParent, rID, rUIXMLDescription ),
pSet ( pItemSet ),
- bHasExchangeSupport ( false ),
- pDialog ( nullptr )
+ bHasExchangeSupport ( false )
{
SetStyle ( GetStyle() | WB_DIALOGCONTROL | WB_HIDE );
}
@@ -57,12 +56,6 @@ IconChoicePage::~IconChoicePage()
disposeOnce();
}
-void IconChoicePage::dispose()
-{
- pDialog.clear();
- TabPage::dispose();
-}
-
/**********************************************************************
|
| Activate / Deaktivate
diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx
index 6e45726d80e5..2e692005f7b5 100644
--- a/cui/source/inc/cuitabarea.hxx
+++ b/cui/source/inc/cuitabarea.hxx
@@ -606,7 +606,6 @@ class SvxPatternTabPage : public SvxTabPage
using TabPage::DeactivatePage;
private:
- VclPtr<VclBox> m_pBxPixelEditor;
VclPtr<SvxPixelCtl> m_pCtlPixel;
VclPtr<SvxColorListBox> m_pLbColor;
VclPtr<SvxColorListBox> m_pLbBackgroundColor;
@@ -614,7 +613,6 @@ private:
VclPtr<SvxXRectPreview> m_pCtlPreview;
VclPtr<PushButton> m_pBtnAdd;
VclPtr<PushButton> m_pBtnModify;
- VclPtr<PushButton> m_pBtnDelete;
SvxBitmapCtl* m_pBitmapCtl;
diff --git a/cui/source/inc/iconcdlg.hxx b/cui/source/inc/iconcdlg.hxx
index adfdf0941a06..21fe5c49fcea 100644
--- a/cui/source/inc/iconcdlg.hxx
+++ b/cui/source/inc/iconcdlg.hxx
@@ -63,7 +63,6 @@ private:
const SfxItemSet* pSet;
OUString aUserString;
bool bHasExchangeSupport;
- VclPtr<IconChoiceDialog> pDialog;
void ImplInitSettings();
@@ -75,7 +74,6 @@ protected:
public:
virtual ~IconChoicePage() override;
- virtual void dispose() override;
const SfxItemSet& GetItemSet() const { return *pSet; }
diff --git a/cui/source/tabpages/tppattern.cxx b/cui/source/tabpages/tppattern.cxx
index 1995c2779085..5bed8420105b 100644
--- a/cui/source/tabpages/tppattern.cxx
+++ b/cui/source/tabpages/tppattern.cxx
@@ -151,9 +151,7 @@ void SvxPatternTabPage::dispose()
m_pCtlPreview.clear();
m_pBtnAdd.clear();
m_pBtnModify.clear();
- m_pBxPixelEditor.clear();
m_pPatternLB.clear();
- m_pBtnDelete.clear();
SvxTabPage::dispose();
}
diff --git a/dbaccess/source/ui/inc/WCPage.hxx b/dbaccess/source/ui/inc/WCPage.hxx
index dd1f0d40ca88..4aec33c666c7 100644
--- a/dbaccess/source/ui/inc/WCPage.hxx
+++ b/dbaccess/source/ui/inc/WCPage.hxx
@@ -45,9 +45,6 @@ namespace dbaui
VclPtr<Edit> m_pEdKeyName;
sal_Int16 m_nOldOperation;
- VclPtr<OWizColumnSelect> m_pPage2;
- VclPtr<OWizNormalExtend> m_pPage3;
-
bool m_bPKeyAllowed;
bool m_bUseHeaderAllowed;
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx
index 2eda6314431f..14918971caaf 100644
--- a/dbaccess/source/ui/misc/WCPage.cxx
+++ b/dbaccess/source/ui/misc/WCPage.cxx
@@ -54,8 +54,6 @@ namespace CopyTableOperation = css::sdb::application::CopyTableOperation;
OCopyTable::OCopyTable(vcl::Window * pParent)
: OWizardPage(pParent, "CopyTablePage", "dbaccess/ui/copytablepage.ui")
, m_nOldOperation(0)
- , m_pPage2(nullptr)
- , m_pPage3(nullptr)
, m_bPKeyAllowed(false)
, m_bUseHeaderAllowed(true)
{
@@ -116,8 +114,6 @@ void OCopyTable::dispose()
m_pCB_PrimaryColumn.clear();
m_pFT_KeyName.clear();
m_pEdKeyName.clear();
- m_pPage2.clear();
- m_pPage3.clear();
OWizardPage::dispose();
}
diff --git a/dbaccess/source/ui/querydesign/querydlg.cxx b/dbaccess/source/ui/querydesign/querydlg.cxx
index ccf4d190a256..3906b93061f0 100644
--- a/dbaccess/source/ui/querydesign/querydlg.cxx
+++ b/dbaccess/source/ui/querydesign/querydlg.cxx
@@ -49,7 +49,6 @@ DlgQryJoin::DlgQryJoin( OQueryTableView * pParent,
: ModalDialog( pParent, "JoinDialog", "dbaccess/ui/joindialog.ui" )
, m_pTableControl( nullptr )
, m_pTableMap(_pTableMap)
- , m_pTableView(pParent)
, eJoinType(static_cast<OQueryTableConnectionData*>(_pData.get())->GetJoinType())
, m_pOrigConnData(_pData)
, m_xConnection(_xConnection)
@@ -150,7 +149,6 @@ void DlgQryJoin::dispose()
m_pPB_OK.clear();
m_pLB_JoinType.clear();
m_pCBNatural.clear();
- m_pTableView.clear();
ModalDialog::dispose();
}
diff --git a/dbaccess/source/ui/querydesign/querydlg.hxx b/dbaccess/source/ui/querydesign/querydlg.hxx
index 7b5ddf85f96e..9fa4f2beffda 100644
--- a/dbaccess/source/ui/querydesign/querydlg.hxx
+++ b/dbaccess/source/ui/querydesign/querydlg.hxx
@@ -46,7 +46,6 @@ namespace dbaui
OTableListBoxControl* m_pTableControl;
OJoinTableView::OTableWindowMap* m_pTableMap;
- VclPtr<OQueryTableView> m_pTableView;
EJoinType eJoinType;
TTableConnectionData::value_type m_pConnData; // contains left and right table
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 4dd1519bd74f..518ff24dbab9 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -5594,7 +5594,6 @@ SvxMSDffManager::SvxMSDffManager(SvStream& rStCtrl_,
nGroupShapeFlags(0), // ensure initialization here, as some corrupted
// files may yield to this being uninitialized
maBaseURL( rBaseURL ),
- mnCurMaxShapeId(0),
mnIdClusters(0),
rStCtrl( rStCtrl_ ),
pStData( pStData_ ),
@@ -5638,7 +5637,6 @@ SvxMSDffManager::SvxMSDffManager( SvStream& rStCtrl_, const OUString& rBaseURL )
nBLIPCount( USHRT_MAX ), // initialize with error, since we first have to check
nGroupShapeFlags(0),
maBaseURL( rBaseURL ),
- mnCurMaxShapeId(0),
mnIdClusters(0),
rStCtrl( rStCtrl_ ),
pStData( nullptr ),
@@ -5716,7 +5714,8 @@ void SvxMSDffManager::GetFidclData( sal_uInt32 nOffsDggL )
if (bOk && SeekToRec(rStCtrl, DFF_msofbtDgg, aRecHd.GetRecEndFilePos(), &aDggAtomHd))
{
aDggAtomHd.SeekToContent( rStCtrl );
- rStCtrl.ReadUInt32( mnCurMaxShapeId )
+ sal_uInt32 nCurMaxShapeId;
+ rStCtrl.ReadUInt32( nCurMaxShapeId )
.ReadUInt32( mnIdClusters )
.ReadUInt32( nDummy )
.ReadUInt32( nDummy ); // nDrawingsSaved
diff --git a/framework/inc/uielement/menubarmanager.hxx b/framework/inc/uielement/menubarmanager.hxx
index 4f3a1ac5163d..a222c5664ba7 100644
--- a/framework/inc/uielement/menubarmanager.hxx
+++ b/framework/inc/uielement/menubarmanager.hxx
@@ -198,7 +198,6 @@ class MenuBarManager:
OUString m_aModuleIdentifier;
VclPtr<Menu> m_pVCLMenu;
css::uno::Reference< css::frame::XFrame > m_xFrame;
- css::uno::Reference< css::container::XNameAccess > m_xUICommandLabels;
css::uno::Reference< css::frame::XUIControllerFactory > m_xPopupMenuControllerFactory;
::std::vector< MenuItemHandler* > m_aMenuItemHandlerVector;
css::uno::Reference< css::frame::XDispatchProvider > m_xDispatchProvider;
diff --git a/framework/source/dispatch/loaddispatcher.cxx b/framework/source/dispatch/loaddispatcher.cxx
index 1805d4b93f43..81141c347aae 100644
--- a/framework/source/dispatch/loaddispatcher.cxx
+++ b/framework/source/dispatch/loaddispatcher.cxx
@@ -27,8 +27,7 @@ LoadDispatcher::LoadDispatcher(const css::uno::Reference< css::uno::XComponentCo
const css::uno::Reference< css::frame::XFrame >& xOwnerFrame ,
const OUString& sTargetName ,
sal_Int32 nSearchFlags)
- : m_xContext (xContext )
- , m_xOwnerFrame (xOwnerFrame )
+ : m_xOwnerFrame (xOwnerFrame )
, m_sTarget (sTargetName )
, m_nSearchFlags(nSearchFlags)
, m_aLoader (xContext )
@@ -37,7 +36,6 @@ LoadDispatcher::LoadDispatcher(const css::uno::Reference< css::uno::XComponentCo
LoadDispatcher::~LoadDispatcher()
{
- m_xContext.clear();
}
void SAL_CALL LoadDispatcher::dispatchWithNotification(const css::util::URL& aURL ,
diff --git a/framework/source/inc/dispatch/loaddispatcher.hxx b/framework/source/inc/dispatch/loaddispatcher.hxx
index c368b37fb626..247cda26f732 100644
--- a/framework/source/inc/dispatch/loaddispatcher.hxx
+++ b/framework/source/inc/dispatch/loaddispatcher.hxx
@@ -44,9 +44,6 @@ class LoadDispatcher : public ::cppu::WeakImplHelper< css::frame::XNotifyingDis
private:
osl::Mutex m_mutex;
- /** @short can be used to create own needed services on demand. */
- css::uno::Reference< css::uno::XComponentContext > m_xContext;
-
/** @short TODO document me */
css::uno::WeakReference< css::frame::XFrame > m_xOwnerFrame;
diff --git a/framework/source/uielement/menubarmanager.cxx b/framework/source/uielement/menubarmanager.cxx
index d99019c435da..0f7795088ddf 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -249,7 +249,6 @@ void SAL_CALL MenuBarManager::disposing()
m_xGlobalAcceleratorManager.clear();
m_xModuleAcceleratorManager.clear();
m_xDocAcceleratorManager.clear();
- m_xUICommandLabels.clear();
m_xPopupMenuControllerFactory.clear();
m_xContext.clear();
}
diff --git a/framework/source/uielement/objectmenucontroller.cxx b/framework/source/uielement/objectmenucontroller.cxx
index 1d03d0807739..d9339d6d2cd7 100644
--- a/framework/source/uielement/objectmenucontroller.cxx
+++ b/framework/source/uielement/objectmenucontroller.cxx
@@ -82,8 +82,6 @@ public:
private:
void fillPopupMenu( const css::uno::Sequence< css::embed::VerbDescriptor >& rVerbCommandSeq, css::uno::Reference< css::awt::XPopupMenu >& rPopupMenu );
-
- css::uno::Reference< css::frame::XDispatch > m_xObjectUpdateDispatch;
};
ObjectMenuController::ObjectMenuController( const css::uno::Reference< css::uno::XComponentContext >& xContext ) :
@@ -131,7 +129,6 @@ void SAL_CALL ObjectMenuController::disposing( const EventObject& )
osl::MutexGuard aLock( m_aMutex );
m_xFrame.clear();
m_xDispatch.clear();
- m_xObjectUpdateDispatch.clear();
if ( m_xPopupMenu.is() )
m_xPopupMenu->removeMenuListener( Reference< css::awt::XMenuListener >(static_cast<OWeakObject *>(this), UNO_QUERY ));
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx
index 3d4752768a58..d87dec093fe8 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -410,7 +410,6 @@ protected:
typedef std::map<sal_uInt32, sal_uInt32> OffsetMap;
OUString maBaseURL;
- sal_uInt32 mnCurMaxShapeId; // we need this information to
sal_uInt32 mnIdClusters; // while only knowing the shapeid
std::vector<FIDCL> maFidcls;
OffsetMap maDgOffsetTable; ///< array of fileoffsets
diff --git a/include/svx/fontwork.hxx b/include/svx/fontwork.hxx
index 1bb4359f2117..e16762dfc2c2 100644
--- a/include/svx/fontwork.hxx
+++ b/include/svx/fontwork.hxx
@@ -96,9 +96,7 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxFontWorkDialog : public SfxDockingWindow
VclPtr<ToolBox> m_pTbxStyle;
VclPtr<ToolBox> m_pTbxAdjust;
- VclPtr<FixedImage> m_pFbDistance;
VclPtr<MetricField> m_pMtrFldDistance;
- VclPtr<FixedImage> m_pFbTextStart;
VclPtr<MetricField> m_pMtrFldTextStart;
VclPtr<ToolBox> m_pTbxShadow;
diff --git a/reportdesign/source/core/api/FormattedField.cxx b/reportdesign/source/core/api/FormattedField.cxx
index 5af4e883482d..4aa4fbd7edb5 100644
--- a/reportdesign/source/core/api/FormattedField.cxx
+++ b/reportdesign/source/core/api/FormattedField.cxx
@@ -97,7 +97,6 @@ void SAL_CALL OFormattedField::dispose()
FormattedFieldPropertySet::dispose();
cppu::WeakComponentImplHelperBase::dispose();
m_xFormatsSupplier.clear();
- m_xFunction.clear();
}
OUString OFormattedField::getImplementationName_Static( )
diff --git a/reportdesign/source/core/api/Section.cxx b/reportdesign/source/core/api/Section.cxx
index 3a19c1c8077f..e875191a7f5a 100644
--- a/reportdesign/source/core/api/Section.cxx
+++ b/reportdesign/source/core/api/Section.cxx
@@ -110,7 +110,6 @@ OSection::OSection(const uno::Reference< report::XReportDefinition >& xParentDef
:SectionBase(m_aMutex)
,SectionPropertySet(context,SectionPropertySet::IMPLEMENTS_PROPERTY_SET,rStrings)
,m_aContainerListeners(m_aMutex)
-,m_xContext(context)
,m_xGroup(xParentGroup)
,m_xReportDefinition(xParentDef)
,m_nHeight(3000)
@@ -168,7 +167,6 @@ void SAL_CALL OSection::disposing()
{
lang::EventObject aDisposeEvent( static_cast< ::cppu::OWeakObject* >( this ) );
m_aContainerListeners.disposeAndClear( aDisposeEvent );
- m_xContext.clear();
}
OUString SAL_CALL OSection::getImplementationName( )
diff --git a/reportdesign/source/core/inc/FormattedField.hxx b/reportdesign/source/core/inc/FormattedField.hxx
index 3e157b7448aa..860ac07ada6a 100644
--- a/reportdesign/source/core/inc/FormattedField.hxx
+++ b/reportdesign/source/core/inc/FormattedField.hxx
@@ -48,7 +48,6 @@ namespace reportdesign
OReportControlModel m_aProps;
css::uno::Reference< css::util::XNumberFormatsSupplier >
m_xFormatsSupplier;
- css::uno::Reference< css::report::XFunction> m_xFunction;
::sal_Int32 m_nFormatKey;
private:
diff --git a/reportdesign/source/core/inc/Section.hxx b/reportdesign/source/core/inc/Section.hxx
index d2430820953c..5a623821d234 100644
--- a/reportdesign/source/core/inc/Section.hxx
+++ b/reportdesign/source/core/inc/Section.hxx
@@ -53,8 +53,7 @@ namespace reportdesign
public SectionBase,
public SectionPropertySet
{
- ::comphelper::OInterfaceContainerHelper2 m_aContainerListeners;
- css::uno::Reference< css::uno::XComponentContext > m_xContext;
+ ::comphelper::OInterfaceContainerHelper2 m_aContainerListeners;
css::uno::Reference< css::drawing::XDrawPage > m_xDrawPage;
css::uno::Reference< css::drawing::XShapeGrouper > m_xDrawPage_ShapeGrouper;
css::uno::Reference< css::form::XFormsSupplier2 > m_xDrawPage_FormSupplier;
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index a33d9eca7a33..da235e8bc0e3 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -46,23 +46,12 @@ struct WriteRcContext
RscCmdLine* pCmdLine;
};
-// table for system dependent resources
-struct RscSysEntry
-{
- sal_uInt32 nKey;
- RESOURCE_TYPE nRscTyp;
- OString aFileName;
- sal_uInt32 nTyp;
- sal_uInt32 nRefId;
-};
-
class RscTypCont
{
rtl_TextEncoding nSourceCharSet;
RSCBYTEORDER_TYPE nByteOrder; // Intel or
OString aLanguage; // output language
std::vector< sal_uInt32 > aLangFallbacks; // language fallback list (entry 0 is language itself)
- sal_uInt32 nUniqueId; // unique id for system resources
sal_uLong nFilePos; // position in file (MTF)
sal_uInt32 nPMId; // unique id for PR-resource file
// must be greater that RSC_VERSIONCONTROL_ID
@@ -71,8 +60,6 @@ class RscTypCont
::std::vector< RscTop* >
aBaseLst; // list of simple resource class
- ::std::vector< RscSysEntry* >
- aSysLst; // list of system resources
void Init(); // initializes classes and tables
void SETCONST( RscEnum *, const char *, sal_uInt32 );
@@ -114,7 +101,6 @@ public:
}
// deletes all resource objects of this file
void Delete( RscFileTab::Index lFileKey );
- void ClearSysNames();
ERRTYPE WriteRc( WriteRcContext& rContext );
void WriteSrc( FILE * fOutput, RscFileTab::Index nFileIndex );
void PutTranslatorKey( sal_uInt64 nKey );
diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx
index 7eafff1f4398..cf6f73bbaba8 100644
--- a/rsc/source/parser/rscdb.cxx
+++ b/rsc/source/parser/rscdb.cxx
@@ -39,7 +39,6 @@ RscTypCont::RscTypCont( RscError * pErrHdl,
CommandFlags nFlagsP )
: nSourceCharSet( RTL_TEXTENCODING_UTF8 )
, nByteOrder( nOrder )
- , nUniqueId(256)
, nFilePos( 0 )
, nPMId(RSC_VERSIONCONTROL + RESOURCE_TYPE(1)) // at least one more
, aEnumLong( pHS->getID( "enum_long" ), RSC_NOTYPE )
@@ -175,17 +174,6 @@ RscTypCont::~RscTypCont()
for (RscTop* pItem : aBaseLst)
delete pItem;
-
- for (RscSysEntry* pItem: aSysLst)
- delete pItem;
-}
-
-void RscTypCont::ClearSysNames()
-{
- for (RscSysEntry* pItem: aSysLst)
- delete pItem;
-
- aSysLst.clear();
}
class RscEnumerateObj
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index e736e618f8af..187a0b1a1e1c 100644
--- a/rsc/source/rsc/rsc.cxx
+++ b/rsc/source/rsc/rsc.cxx
@@ -610,7 +610,6 @@ ERRTYPE RscCompiler::Link()
// write file
pTC->ChangeLanguage( it->aLangName );
pTC->SetSourceCharSet( RTL_TEXTENCODING_UTF8 );
- pTC->ClearSysNames();
WriteRcContext aContext;
diff --git a/sd/source/ui/dlg/animobjs.cxx b/sd/source/ui/dlg/animobjs.cxx
index 7c627c359ac2..6588b105b646 100644
--- a/sd/source/ui/dlg/animobjs.cxx
+++ b/sd/source/ui/dlg/animobjs.cxx
@@ -130,7 +130,6 @@ const size_t AnimationWindow::EMPTY_FRAMELIST = std::numeric_limits<size_t>::max
AnimationWindow::AnimationWindow(SfxBindings* pInBindings, SfxChildWindow *pCW, vcl::Window* pParent)
: SfxDockingWindow(pInBindings, pCW, pParent,
"DockingAnimation", "modules/simpress/ui/dockinganimation.ui")
- , pWin(pParent)
, m_nCurrentFrame(EMPTY_FRAMELIST)
, bMovie(false)
, bAllObjects(false)
@@ -240,7 +239,6 @@ void AnimationWindow::dispose()
m_pFtAdjustment.clear();
m_pLbAdjustment.clear();
m_pBtnCreateGroup.clear();
- pWin.clear();
SfxDockingWindow::dispose();
}
diff --git a/sd/source/ui/inc/Ruler.hxx b/sd/source/ui/inc/Ruler.hxx
index 65bbc660b455..0624a750e62a 100644
--- a/sd/source/ui/inc/Ruler.hxx
+++ b/sd/source/ui/inc/Ruler.hxx
@@ -49,7 +49,6 @@ public:
using ::Ruler::SetNullOffset;
protected:
- VclPtr< ::sd::Window> pSdWin;
DrawViewShell* pDrViewShell;
RulerCtrlItem* pCtrlItem;
bool bHorz;
diff --git a/sd/source/ui/inc/animobjs.hxx b/sd/source/ui/inc/animobjs.hxx
index 6a5876067371..8f576871cb5d 100644
--- a/sd/source/ui/inc/animobjs.hxx
+++ b/sd/source/ui/inc/animobjs.hxx
@@ -117,7 +117,6 @@ private:
VclPtr<ListBox> m_pLbAdjustment;
VclPtr<PushButton> m_pBtnCreateGroup;
- VclPtr<vcl::Window> pWin;
::std::vector< ::std::pair<BitmapEx*, ::tools::Time*> > m_FrameList;
static const size_t EMPTY_FRAMELIST;
size_t m_nCurrentFrame;
diff --git a/sd/source/ui/view/sdruler.cxx b/sd/source/ui/view/sdruler.cxx
index 39d2c5b385d7..643a50a321c3 100644
--- a/sd/source/ui/view/sdruler.cxx
+++ b/sd/source/ui/view/sdruler.cxx
@@ -70,7 +70,6 @@ void RulerCtrlItem::StateChanged( sal_uInt16 nSId, SfxItemState, const SfxPoolIt
Ruler::Ruler( DrawViewShell& rViewSh, vcl::Window* pParent, ::sd::Window* pWin, SvxRulerSupportFlags nRulerFlags, SfxBindings& rBindings, WinBits nWinStyle)
: SvxRuler(pParent, pWin, nRulerFlags, rBindings, nWinStyle)
- , pSdWin(pWin)
, pDrViewShell(&rViewSh)
{
rBindings.EnterRegistrations();
@@ -100,7 +99,6 @@ void Ruler::dispose()
rBindings.EnterRegistrations();
DELETEZ( pCtrlItem );
rBindings.LeaveRegistrations();
- pSdWin.clear();
SvxRuler::dispose();
}
diff --git a/sfx2/source/dialog/backingcomp.cxx b/sfx2/source/dialog/backingcomp.cxx
index cec11e23af81..d114c1d46728 100644
--- a/sfx2/source/dialog/backingcomp.cxx
+++ b/sfx2/source/dialog/backingcomp.cxx
@@ -84,10 +84,6 @@ class BackingComp : public css::lang::XTypeProvider
, public ::cppu::OWeakObject
{
private:
- /** the global uno service manager.
- Must be used to create own needed services. */
- css::uno::Reference< css::uno::XComponentContext > m_xContext;
-
/** reference to the component window. */
css::uno::Reference< css::awt::XWindow > m_xWindow;
@@ -96,7 +92,7 @@ private:
public:
- explicit BackingComp(const css::uno::Reference< css::uno::XComponentContext >& xContext);
+ explicit BackingComp();
// XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
@@ -146,8 +142,7 @@ public:
virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xListener, const css::util::URL& aURL ) override;
};
-BackingComp::BackingComp( const css::uno::Reference< css::uno::XComponentContext >& xContext )
- : m_xContext(xContext)
+BackingComp::BackingComp()
{
}
@@ -597,7 +592,6 @@ void SAL_CALL BackingComp::dispose()
// forget all other used references
m_xFrame.clear();
- m_xContext.clear();
/* } SAFE */
}
@@ -770,10 +764,10 @@ void SAL_CALL BackingComp::removeStatusListener( const css::uno::Reference< css:
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
com_sun_star_comp_sfx2_BackingComp_get_implementation(
- css::uno::XComponentContext *context,
+ css::uno::XComponentContext *,
css::uno::Sequence<css::uno::Any> const &)
{
- return cppu::acquire(new BackingComp(context));
+ return cppu::acquire(new BackingComp);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/dialog/fontwork.cxx b/svx/source/dialog/fontwork.cxx
index d86fe1f4d88b..0bf45c59a96f 100644
--- a/svx/source/dialog/fontwork.cxx
+++ b/svx/source/dialog/fontwork.cxx
@@ -286,9 +286,7 @@ void SvxFontWorkDialog::dispose()
pCtrlItem->dispose();
m_pTbxStyle.clear();
m_pTbxAdjust.clear();
- m_pFbDistance.clear();
m_pMtrFldDistance.clear();
- m_pFbTextStart.clear();
m_pMtrFldTextStart.clear();
m_pTbxShadow.clear();
m_pFbShadowX.clear();
diff --git a/sw/inc/swcalwrp.hxx b/sw/inc/swcalwrp.hxx
index 24bfeec16b63..cb59ddd28699 100644
--- a/sw/inc/swcalwrp.hxx
+++ b/sw/inc/swcalwrp.hxx
@@ -27,7 +27,6 @@
class SwCalendarWrapper : public CalendarWrapper
{
- OUString sUniqueId;
LanguageType nLang;
public:
diff --git a/sw/source/core/bastyp/init.cxx b/sw/source/core/bastyp/init.cxx
index 6e58c7e423be..951867b33f24 100644
--- a/sw/source/core/bastyp/init.cxx
+++ b/sw/source/core/bastyp/init.cxx
@@ -849,7 +849,6 @@ CharClass& GetAppCharClass()
void SwCalendarWrapper::LoadDefaultCalendar( LanguageType eLang )
{
- sUniqueId.clear();
if( eLang != nLang )
loadDefaultCalendar( LanguageTag::convertToLocale( nLang = eLang ));
}