[Libreoffice-commits] core.git: basegfx/source chart2/source compilerplugins/clang cui/source include/basegfx include/svtools include/svx sc/inc sc/source svtools/source svx/inc svx/source sw/source vcl/inc vcl/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Mon Feb 3 09:53:36 UTC 2020
basegfx/source/polygon/b2dlinegeometry.cxx | 23
chart2/source/controller/dialogs/ChartResourceGroups.cxx | 4
chart2/source/controller/dialogs/tp_ChartType.cxx | 4
chart2/source/controller/inc/ObjectHierarchy.hxx | 8
chart2/source/controller/main/ElementSelector.cxx | 2
chart2/source/controller/main/ObjectHierarchy.cxx | 3
chart2/source/controller/sidebar/ChartTypePanel.cxx | 4
chart2/source/inc/ChartResourceGroups.hxx | 2
compilerplugins/clang/constantparam.bitmask.results | 12
compilerplugins/clang/constantparam.booleans.results | 1580 ++++++++-------
compilerplugins/clang/constantparam.constructors.results | 440 ++--
compilerplugins/clang/constantparam.numbers.results | 1086 +++++-----
compilerplugins/clang/constantparam.py | 2
cui/source/customize/cfgutil.cxx | 12
cui/source/customize/macropg.cxx | 2
cui/source/factory/dlgfact.cxx | 2
cui/source/inc/cfgutil.hxx | 2
include/basegfx/polygon/b2dlinegeometry.hxx | 7
include/svtools/valueset.hxx | 2
include/svx/DescriptionGenerator.hxx | 6
sc/inc/columnspanset.hxx | 3
sc/source/core/data/bcaslot.cxx | 2
sc/source/core/data/columnspanset.cxx | 4
sc/source/core/data/documen6.cxx | 2
sc/source/core/data/document.cxx | 4
sc/source/core/data/listenercontext.cxx | 4
sc/source/core/data/table3.cxx | 2
sc/source/filter/oox/commentsbuffer.cxx | 2
sc/source/ui/docshell/docfunc.cxx | 9
sc/source/ui/docshell/docfuncutil.cxx | 2
sc/source/ui/docshell/externalrefmgr.cxx | 2
sc/source/ui/inc/docfunc.hxx | 2
svtools/source/control/valueset.cxx | 5
svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx | 5
svx/source/accessibility/DescriptionGenerator.cxx | 12
svx/source/sdr/contact/viewcontactofgraphic.cxx | 1
svx/source/sdr/primitive2d/sdrdecompositiontools.cxx | 3
svx/source/sdr/primitive2d/sdrmeasureprimitive2d.cxx | 1
svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx | 12
svx/source/svdraw/svdotextdecomposition.cxx | 6
sw/source/core/doc/doccomp.cxx | 8
sw/source/filter/inc/msfilter.hxx | 3
sw/source/filter/ww8/writerhelper.cxx | 6
sw/source/filter/ww8/ww8par5.cxx | 6
vcl/inc/svimpbox.hxx | 6
vcl/source/treelist/iconviewimpl.cxx | 2
vcl/source/treelist/svimpbox.cxx | 34
47 files changed, 1789 insertions(+), 1562 deletions(-)
New commits:
commit 0528012fd0dc4b93645ef7790b0db9d1cecbae66
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Mon Feb 3 10:05:12 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Feb 3 10:53:01 2020 +0100
loplugin:constantparam
Change-Id: If2dee122bf07dc179fd8f6e766442ec1891a5f3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87845
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/basegfx/source/polygon/b2dlinegeometry.cxx b/basegfx/source/polygon/b2dlinegeometry.cxx
index 72c25f0c0593..0f602eb6241e 100644
--- a/basegfx/source/polygon/b2dlinegeometry.cxx
+++ b/basegfx/source/polygon/b2dlinegeometry.cxx
@@ -848,8 +848,7 @@ namespace basegfx
css::drawing::LineCap eCap,
double fMaxAllowedAngle,
double fMaxPartOfEdge,
- double fMiterMinimumAngle,
- basegfx::triangulator::B2DTriangleVector* pTriangles)
+ double fMiterMinimumAngle)
{
if(fMaxAllowedAngle > F_PI2)
{
@@ -959,7 +958,7 @@ namespace basegfx
fHalfLineWidth,
eJoin,
fMiterMinimumAngle,
- pTriangles));
+ nullptr));
}
else if(aOrientation == B2VectorOrientation::Negative)
{
@@ -976,7 +975,7 @@ namespace basegfx
fHalfLineWidth,
eJoin,
fMiterMinimumAngle,
- pTriangles));
+ nullptr));
}
}
@@ -995,7 +994,7 @@ namespace basegfx
bLast && eCap == css::drawing::LineCap_ROUND,
bFirst && eCap == css::drawing::LineCap_SQUARE,
bLast && eCap == css::drawing::LineCap_SQUARE,
- pTriangles));
+ nullptr));
}
else
{
@@ -1007,7 +1006,7 @@ namespace basegfx
false,
false,
false,
- pTriangles));
+ nullptr));
}
// prepare next step
@@ -1030,17 +1029,7 @@ namespace basegfx
aCandidate.getB2DPoint(0),
fHalfLineWidth));
- if(nullptr != pTriangles)
- {
- const basegfx::triangulator::B2DTriangleVector aResult(
- basegfx::triangulator::triangulate(
- aCircle));
- pTriangles->insert(pTriangles->end(), aResult.begin(), aResult.end());
- }
- else
- {
- aRetval.append(aCircle);
- }
+ aRetval.append(aCircle);
}
return aRetval;
diff --git a/chart2/source/controller/dialogs/ChartResourceGroups.cxx b/chart2/source/controller/dialogs/ChartResourceGroups.cxx
index 2ba46bbad5c8..199606abef69 100644
--- a/chart2/source/controller/dialogs/ChartResourceGroups.cxx
+++ b/chart2/source/controller/dialogs/ChartResourceGroups.cxx
@@ -122,12 +122,12 @@ StackingResourceGroup::StackingResourceGroup(weld::Builder* pBuilder)
m_xRB_Stack_Z->connect_toggled(LINK(this, StackingResourceGroup, StackingChangeHdl));
}
-void StackingResourceGroup::showControls(bool bShow, bool bShowDeepStacking)
+void StackingResourceGroup::showControls(bool bShow)
{
m_xCB_Stacked->set_visible(bShow);
m_xRB_Stack_Y->set_visible(bShow);
m_xRB_Stack_Y_Percent->set_visible(bShow);
- m_xRB_Stack_Z->set_visible(bShow && bShowDeepStacking);
+ m_xRB_Stack_Z->set_visible(false);
}
void StackingResourceGroup::fillControls(const ChartTypeParameter& rParameter)
diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx b/chart2/source/controller/dialogs/tp_ChartType.cxx
index 6c603c344270..97fbb5bf878f 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.cxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.cxx
@@ -266,7 +266,7 @@ void ChartTypeTabPage::showAllControls( ChartTypeDialogController& rTypeControll
bool bShow = rTypeController.shouldShow_3DLookControl();
m_pDim3DLookResourceGroup->showControls( bShow );
bShow = rTypeController.shouldShow_StackingControl();
- m_pStackingResourceGroup->showControls( bShow, false );
+ m_pStackingResourceGroup->showControls( bShow );
bShow = rTypeController.shouldShow_SplineControl();
m_pSplineResourceGroup->showControls( bShow );
bShow = rTypeController.shouldShow_GeometryControl();
@@ -344,7 +344,7 @@ void ChartTypeTabPage::initializePage()
{
m_xSubTypeList->Hide();
m_pDim3DLookResourceGroup->showControls( false );
- m_pStackingResourceGroup->showControls( false, false );
+ m_pStackingResourceGroup->showControls( false );
m_pSplineResourceGroup->showControls( false );
m_pGeometryResourceGroup->showControls( false );
m_pSortByXValuesResourceGroup->showControls( false );
diff --git a/chart2/source/controller/inc/ObjectHierarchy.hxx b/chart2/source/controller/inc/ObjectHierarchy.hxx
index 10b95b951949..5b8240a9a103 100644
--- a/chart2/source/controller/inc/ObjectHierarchy.hxx
+++ b/chart2/source/controller/inc/ObjectHierarchy.hxx
@@ -42,15 +42,13 @@ class ObjectHierarchy
public:
typedef std::vector< ObjectIdentifier > tChildContainer;
- /** @param bFlattenDiagram
- If <TRUE/>, the content of the diagram (data series, wall, floor,
- etc.) is treated as being at the same level as the diagram. (This is
- used for keyboard navigation).
+ /** The content of the diagram (data series, wall, floor,
+ etc.) is treated as being at the same level as the diagram. (This is
+ used for keyboard navigation).
*/
explicit ObjectHierarchy(
const css::uno::Reference< css::chart2::XChartDocument > & xChartDocument,
ExplicitValueProvider * pExplicitValueProvider,
- bool bFlattenDiagram = false,
bool bOrderingForElementSelector = false );
~ObjectHierarchy();
diff --git a/chart2/source/controller/main/ElementSelector.cxx b/chart2/source/controller/main/ElementSelector.cxx
index 4cc61cc1d1b0..30cc4102c3e2 100644
--- a/chart2/source/controller/main/ElementSelector.cxx
+++ b/chart2/source/controller/main/ElementSelector.cxx
@@ -105,7 +105,7 @@ void SelectorListBox::UpdateChartElementsListAndSelection()
if( xFact.is() )
xChartView = xFact->createInstance( CHART_VIEW_SERVICE_NAME );
ExplicitValueProvider* pExplicitValueProvider = nullptr; //ExplicitValueProvider::getExplicitValueProvider(xChartView); this creates all visible data points, that's too much
- ObjectHierarchy aHierarchy( xChartDoc, pExplicitValueProvider, true /*bFlattenDiagram*/, true /*bOrderingForElementSelector*/ );
+ ObjectHierarchy aHierarchy( xChartDoc, pExplicitValueProvider, true /*bOrderingForElementSelector*/ );
lcl_addObjectsToList( aHierarchy, ::chart::ObjectHierarchy::getRootNodeOID(), m_aEntries, 0, xChartDoc );
if( bAddSelectionToList )
diff --git a/chart2/source/controller/main/ObjectHierarchy.cxx b/chart2/source/controller/main/ObjectHierarchy.cxx
index 429d9ad7e272..2096ab4d6cce 100644
--- a/chart2/source/controller/main/ObjectHierarchy.cxx
+++ b/chart2/source/controller/main/ObjectHierarchy.cxx
@@ -611,9 +611,8 @@ ObjectIdentifier ImplObjectHierarchy::getParent(
ObjectHierarchy::ObjectHierarchy(
const Reference< XChartDocument > & xChartDocument,
ExplicitValueProvider * pExplicitValueProvider /* = 0 */,
- bool bFlattenDiagram /* = false */,
bool bOrderingForElementSelector /* = false */) :
- m_apImpl( new impl::ImplObjectHierarchy( xChartDocument, pExplicitValueProvider, bFlattenDiagram, bOrderingForElementSelector ))
+ m_apImpl( new impl::ImplObjectHierarchy( xChartDocument, pExplicitValueProvider, /*bFlattenDiagram*/false, bOrderingForElementSelector ))
{}
ObjectHierarchy::~ObjectHierarchy()
diff --git a/chart2/source/controller/sidebar/ChartTypePanel.cxx b/chart2/source/controller/sidebar/ChartTypePanel.cxx
index 846dbed13570..f6334864b049 100644
--- a/chart2/source/controller/sidebar/ChartTypePanel.cxx
+++ b/chart2/source/controller/sidebar/ChartTypePanel.cxx
@@ -217,7 +217,7 @@ void ChartTypePanel::Initialize()
{
m_xSubTypeList->Hide();
m_pDim3DLookResourceGroup->showControls(false);
- m_pStackingResourceGroup->showControls(false, false);
+ m_pStackingResourceGroup->showControls(false);
m_pSplineResourceGroup->showControls(false);
m_pGeometryResourceGroup->showControls(false);
m_pSortByXValuesResourceGroup->showControls(false);
@@ -314,7 +314,7 @@ void ChartTypePanel::showAllControls(ChartTypeDialogController& rTypeController)
bool bShow = rTypeController.shouldShow_3DLookControl();
m_pDim3DLookResourceGroup->showControls(bShow);
bShow = rTypeController.shouldShow_StackingControl();
- m_pStackingResourceGroup->showControls(bShow, false);
+ m_pStackingResourceGroup->showControls(bShow);
bShow = rTypeController.shouldShow_SplineControl();
m_pSplineResourceGroup->showControls(bShow);
bShow = rTypeController.shouldShow_GeometryControl();
diff --git a/chart2/source/inc/ChartResourceGroups.hxx b/chart2/source/inc/ChartResourceGroups.hxx
index 3317f83acd09..f3b3e2f4b2c5 100644
--- a/chart2/source/inc/ChartResourceGroups.hxx
+++ b/chart2/source/inc/ChartResourceGroups.hxx
@@ -80,7 +80,7 @@ class StackingResourceGroup : public ChangingResource
public:
explicit StackingResourceGroup(weld::Builder* pBuilder);
- void showControls(bool bShow, bool bShowDeepStacking);
+ void showControls(bool bShow);
void fillControls(const ChartTypeParameter& rParameter);
void fillParameter(ChartTypeParameter& rParameter);
diff --git a/compilerplugins/clang/constantparam.bitmask.results b/compilerplugins/clang/constantparam.bitmask.results
index f18bbf6b392a..f12ee3564820 100644
--- a/compilerplugins/clang/constantparam.bitmask.results
+++ b/compilerplugins/clang/constantparam.bitmask.results
@@ -4,7 +4,7 @@ codemaker/source/javamaker/classfile.hxx:153
codemaker/source/javamaker/classfile.hxx:168
void codemaker::javamaker::ClassFile::addField(enum codemaker::javamaker::ClassFile::AccessFlags,const class rtl::OString &,const class rtl::OString &,unsigned short,const class rtl::OString &)
enum codemaker::javamaker::ClassFile::AccessFlags accessFlags setBits=0x1
-dbaccess/source/filter/xml/xmlExport.hxx:172
+dbaccess/source/filter/xml/xmlExport.hxx:170
void dbaxml::ODBExport::ODBExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum SvXMLExportFlags)
enum SvXMLExportFlags nExportFlag setBits=0x400 clearBits=0x200
include/basegfx/polygon/b2dpolygontools.hxx:144
@@ -13,7 +13,7 @@ include/basegfx/polygon/b2dpolygontools.hxx:144
include/framework/framelistanalyzer.hxx:184
void framework::FrameListAnalyzer::FrameListAnalyzer(const class com::sun::star::uno::Reference<class com::sun::star::frame::XFramesSupplier> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,enum FrameAnalyzerFlags)
enum FrameAnalyzerFlags eDetectMode setBits=0x4
-include/sfx2/objsh.hxx:456
+include/sfx2/objsh.hxx:461
void SfxObjectShell::FinishedLoading(enum SfxLoadedFlags)
enum SfxLoadedFlags nWhich setBits=0x1
include/svtools/brwbox.hxx:431
@@ -23,7 +23,7 @@ include/vcl/wizardmachine.hxx:140
void vcl::WizardMachine::WizardMachine(class weld::Window *,enum WizardButtonFlags)
enum WizardButtonFlags _nButtonFlags setBits=0xf
sc/inc/rangelst.hxx:48
- void ScRangeList::Format(class rtl::OUString &,enum ScRefFlags,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool) const
+ void ScRangeList::Format(class rtl::OUString &,enum ScRefFlags,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool) const
enum ScRefFlags nFlags setBits=0x8000 clearBits=0x7f80
sc/inc/rangeutl.hxx:162
void ScRangeStringConverter::GetStringFromAddress(class rtl::OUString &,const class ScAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
@@ -37,13 +37,13 @@ sc/source/ui/view/cellsh1.cxx:102
sc/source/ui/view/cellsh1.cxx:125
class rtl::OUString FlagsToString(enum InsertDeleteFlags,enum InsertDeleteFlags)
enum InsertDeleteFlags nFlagsMask setBits=0x87f clearBits=0x700
-sw/source/core/view/viewsh.cxx:728
+sw/source/core/view/viewsh.cxx:715
void lcl_InvalidateAllContent(class SwViewShell &,enum SwInvalidateFlags)
enum SwInvalidateFlags nInv setBits=0x2
-sw/source/filter/html/swhtml.hxx:670
+sw/source/filter/html/swhtml.hxx:672
void SwHTMLParser::SetFrameFormatAttrs(class SfxItemSet &,enum HtmlFrameFormatFlags,class SfxItemSet &)
enum HtmlFrameFormatFlags nFlags setBits=0x1
-sw/source/filter/ww8/wrtw8esh.cxx:1557
+sw/source/filter/ww8/wrtw8esh.cxx:1544
enum ShapeFlag AddMirrorFlags(enum ShapeFlag,const class SwMirrorGrf &)
enum ShapeFlag nFlags setBits=0xa00 clearBits=0x5ef
xmloff/inc/MetaExportComponent.hxx:32
diff --git a/compilerplugins/clang/constantparam.booleans.results b/compilerplugins/clang/constantparam.booleans.results
index 4288e3b07453..0e3c7a722d44 100644
--- a/compilerplugins/clang/constantparam.booleans.results
+++ b/compilerplugins/clang/constantparam.booleans.results
@@ -1,12 +1,12 @@
-accessibility/inc/standard/vclxaccessiblemenuitem.hxx:59
+accessibility/inc/standard/vclxaccessiblemenuitem.hxx:57
void VCLXAccessibleMenuItem::VCLXAccessibleMenuItem(class Menu *,unsigned short,class Menu *)
class Menu * pMenu
0
-accessibility/source/standard/vclxaccessibletoolbox.cxx:100
+accessibility/source/standard/vclxaccessibletoolbox.cxx:101
void (anonymous namespace)::OToolBoxWindowItem::OToolBoxWindowItem(int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &)
int _nIndexInParent
0
-basctl/source/basicide/moduldlg.hxx:103
+basctl/source/basicide/moduldlg.hxx:102
void basctl::LibDialog::EnableReference(_Bool)
_Bool b
0
@@ -14,39 +14,39 @@ basctl/source/inc/scriptdocument.hxx:89
void basctl::ScriptDocument::ScriptDocument(enum basctl::ScriptDocument::SpecialDocument)
enum basctl::ScriptDocument::SpecialDocument _eType
0
-basegfx/source/polygon/b2dpolygon.cxx:60
- void CoordinateDataArray2D::CoordinateDataArray2D(unsigned int)
+basegfx/source/polygon/b2dpolygon.cxx:62
+ void (anonymous namespace)::CoordinateDataArray2D::CoordinateDataArray2D(unsigned int)
unsigned int nCount
0
-basegfx/source/polygon/b3dpolygon.cxx:74
- void CoordinateDataArray3D::CoordinateDataArray3D(unsigned int)
+basegfx/source/polygon/b3dpolygon.cxx:76
+ void (anonymous namespace)::CoordinateDataArray3D::CoordinateDataArray3D(unsigned int)
unsigned int nCount
0
-basic/source/inc/runtime.hxx:322
+basic/source/inc/runtime.hxx:323
void SbiRuntime::StepRESUME(unsigned int)
unsigned int
1
-basic/source/runtime/iosys.cxx:71
- void SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &)
+basic/source/runtime/iosys.cxx:62
+ void (anonymous namespace)::SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &)
class weld::Window *
0
-canvas/source/cairo/cairo_canvashelper.hxx:252
+canvas/source/cairo/cairo_canvashelper.hxx:249
void cairocanvas::CanvasHelper::useStates(const struct com::sun::star::rendering::ViewState &,const struct com::sun::star::rendering::RenderState &,_Bool)
_Bool setColor
1
-canvas/source/vcl/spritecanvashelper.hxx:46
+canvas/source/vcl/spritecanvashelper.hxx:45
void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool)
- _Bool bHaveAlpha
+ _Bool bProtect
0
-canvas/source/vcl/spritecanvashelper.hxx:46
+canvas/source/vcl/spritecanvashelper.hxx:45
void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool)
- _Bool bProtect
+ _Bool bHaveAlpha
0
chart2/qa/extras/chart2dump/chart2dump.cxx:97
void Chart2DumpTest::Chart2DumpTest(_Bool)
_Bool bDumpMode
0
-chart2/qa/extras/chart2export.cxx:356
+chart2/qa/extras/chart2export.cxx:379
void checkCommonTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,double,double,_Bool,double,_Bool,_Bool)
_Bool aExpectedShowEquation
1
@@ -98,10 +98,6 @@ chart2/qa/extras/PivotChartTest.cxx:219
class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotTables> lclGetDataPilotTables(int,const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheetDocument> &)
int nIndex
0
-chart2/source/controller/dialogs/ChartTypeDialogController.hxx:54
- void chart::ChartTypeParameter::ChartTypeParameter(int,_Bool,_Bool,enum chart::GlobalStackMode,_Bool,_Bool,enum com::sun::star::chart2::CurveStyle)
- enum com::sun::star::chart2::CurveStyle eCurveStyle
- 0
chart2/source/controller/dialogs/DialogModel.cxx:170
struct (anonymous namespace)::lcl_DataSeriesContainerAppend & (anonymous namespace)::lcl_DataSeriesContainerAppend::operator++(int)
int
@@ -110,14 +106,14 @@ chart2/source/controller/dialogs/DialogModel.cxx:229
struct (anonymous namespace)::lcl_RolesWithRangeAppend & (anonymous namespace)::lcl_RolesWithRangeAppend::operator++(int)
int
0
-chart2/source/controller/dialogs/tp_ChartType.cxx:167
- void chart::StackingResourceGroup::showControls(_Bool,_Bool)
- _Bool bShowDeepStacking
- 0
chart2/source/controller/inc/ChartController.hxx:372
class chart::ChartController::TheModelRef & chart::ChartController::TheModelRef::operator=(class chart::ChartController::TheModel *)
###1
0
+chart2/source/controller/inc/ObjectHierarchy.hxx:50
+ void chart::ObjectHierarchy::ObjectHierarchy(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,class chart::ExplicitValueProvider *,_Bool,_Bool)
+ _Bool bFlattenDiagram
+ 1
chart2/source/controller/inc/ViewElementListProvider.hxx:51
class Graphic chart::ViewElementListProvider::GetSymbolGraphic(int,const class SfxItemSet *) const
int nStandardSymbol
@@ -126,6 +122,14 @@ chart2/source/inc/AxisHelper.hxx:194
class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartType> chart::AxisHelper::getChartTypeByIndex(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XCoordinateSystem> &,int)
int nIndex
0
+chart2/source/inc/ChartResourceGroups.hxx:83
+ void chart::StackingResourceGroup::showControls(_Bool,_Bool)
+ _Bool bShowDeepStacking
+ 0
+chart2/source/inc/ChartTypeDialogController.hxx:101
+ void chart::ChartTypeParameter::ChartTypeParameter(int,_Bool,_Bool,enum chart::GlobalStackMode,_Bool,_Bool,enum com::sun::star::chart2::CurveStyle)
+ enum com::sun::star::chart2::CurveStyle eCurveStyle
+ 0
chart2/source/model/template/ColumnLineChartTypeTemplate.hxx:38
void chart::ColumnLineChartTypeTemplate::ColumnLineChartTypeTemplate(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum chart::StackMode,int)
int nNumberOfLines
@@ -138,6 +142,10 @@ chart2/source/view/axes/VAxisProperties.hxx:150
struct chart::TickmarkProperties chart::AxisProperties::makeTickmarkPropertiesForComplexCategories(int,int) const
int nTickStartDistanceToAxis
0
+chart2/source/view/axes/VCartesianAxis.hxx:32
+ void chart::VCartesianAxis::VCartesianAxis(const struct chart::AxisProperties &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormatsSupplier> &,int,int,class chart::PlottingPositionHelper *)
+ int nDimensionIndex
+ 1
chart2/source/view/charttypes/CategoryPositionHelper.hxx:29
void chart::CategoryPositionHelper::CategoryPositionHelper(double,double)
double fSeriesCount
@@ -154,14 +162,6 @@ chart2/source/view/inc/Stripe.hxx:53
void chart::Stripe::InvertNormal(_Bool)
_Bool bInvertNormal
1
-chart2/source/view/inc/VSeriesPlotter.hxx:61
- _Bool chart::AxesNumberFormats::hasFormat(int,int) const
- int nDimIndex
- 1
-chart2/source/view/inc/VSeriesPlotter.hxx:65
- int chart::AxesNumberFormats::getFormat(int,int) const
- int nDimIndex
- 1
chart2/source/view/main/ShapeFactory.cxx:702
void appendAndCloseBezierCoords(struct com::sun::star::drawing::PolyPolygonBezierCoords &,const struct com::sun::star::drawing::PolyPolygonBezierCoords &,_Bool)
_Bool bAppendInverse
@@ -174,19 +174,19 @@ codemaker/source/javamaker/classfile.hxx:120
void codemaker::javamaker::ClassFile::Code::storeLocalReference(unsigned short)
unsigned short index
1
-comphelper/source/misc/backupfilehelper.cxx:78
+comphelper/source/misc/backupfilehelper.cxx:57
unsigned int createCrc32(const class std::shared_ptr<class osl::File> &,unsigned int)
unsigned int nOffset
0
-connectivity/source/drivers/postgresql/pq_connection.cxx:413
- void pq_sdbc_driver::cstr_vector::push_back(const char *,enum __sal_NoAcquire)
+connectivity/source/drivers/postgresql/pq_connection.cxx:415
+ void pq_sdbc_driver::(anonymous namespace)::cstr_vector::push_back(const char *,enum __sal_NoAcquire)
enum __sal_NoAcquire
0
connectivity/source/drivers/postgresql/pq_resultsetmetadata.hxx:89
_Bool pq_sdbc_driver::ResultSetMetaData::getBoolColumnProperty(const class rtl::OUString &,int,_Bool)
_Bool def
0
-connectivity/source/inc/dbase/DIndex.hxx:116
+connectivity/source/inc/dbase/DIndex.hxx:115
_Bool connectivity::dbase::ODbaseIndex::Find(unsigned int,const class connectivity::ORowSetValue &)
unsigned int nRec
0
@@ -202,7 +202,7 @@ connectivity/source/inc/odbc/OTools.hxx:219
void connectivity::odbc::OTools::bindValue(const class connectivity::odbc::OConnection *,void *,int,short,short,const void *,void *,long *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,unsigned short,_Bool)
short _nMaxLen
0
-cppcanvas/source/mtfrenderer/mtftools.cxx:292
+cppcanvas/source/mtfrenderer/mtftools.cxx:284
void appendRect(class basegfx::B2DPolyPolygon &,const class basegfx::B2DPoint &,const double,const double,const double,const double)
const double nX1
0
@@ -218,31 +218,35 @@ cppu/qa/test_unotype.cxx:74
void (anonymous namespace)::DerivedInterface2::dummy(struct (anonymous namespace)::DerivedInterface2 *)
struct (anonymous namespace)::DerivedInterface2 * p
0
-cui/source/inc/acccfg.hxx:42
+cui/source/inc/acccfg.hxx:43
void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &)
int nListPos
0
-cui/source/inc/cfg.hxx:336
+cui/source/inc/cfg.hxx:340
void SvxMenuEntriesListBox::set_toggle(int,enum TriState,int)
int col
0
-cui/source/inc/cfg.hxx:429
- int SvxConfigPage::InsertEntry(class SvxConfigEntry *,int,_Bool)
- _Bool bFront
+cui/source/inc/cfg.hxx:458
+ void SvxConfigPage::InsertEntryIntoUI(class SvxConfigEntry *,class weld::TreeView &,class weld::TreeIter &,int)
+ int nStartCol
0
-cui/source/inc/cfg.hxx:438
- void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int)
+cui/source/inc/cfg.hxx:462
+ void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,class weld::TreeView &,class weld::TreeIter &,int)
int nStartCol
1
-cui/source/inc/cfgutil.hxx:127
+cui/source/inc/cfgutil.hxx:128
void CuiConfigFunctionListBox::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *)
const class weld::TreeIter * pParent
0
-cui/source/inc/cfgutil.hxx:141
+cui/source/inc/cfgutil.hxx:142
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > CuiConfigFunctionListBox::make_iterator(const class weld::TreeIter *) const
const class weld::TreeIter * pOrig
0
-cui/source/inc/cuitabarea.hxx:727
+cui/source/inc/cfgutil.hxx:260
+ void SvxScriptSelectorDialog::SvxScriptSelectorDialog(class weld::Window *,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &)
+ _Bool bShowSlots
+ 0
+cui/source/inc/cuitabarea.hxx:726
void SvxColorTabPage::SetPropertyList(enum XPropertyListType,const class rtl::Reference<class XPropertyList> &)
enum XPropertyListType t
0
@@ -266,7 +270,7 @@ cui/source/inc/scriptdlg.hxx:123
void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool)
_Bool bSelect
0
-cui/source/options/optjsearch.hxx:66
+cui/source/options/optjsearch.hxx:65
void SvxJSearchOptionsPage::EnableSaveOptions(_Bool)
_Bool bVal
0
@@ -298,7 +302,7 @@ dbaccess/source/ui/app/AppSwapWindow.hxx:58
class SvxIconChoiceCtrlEntry * dbaui::OApplicationSwapWindow::GetEntry(unsigned long) const
unsigned long nPos
0
-dbaccess/source/ui/control/tabletree.cxx:295
+dbaccess/source/ui/control/tabletree.cxx:294
class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > lcl_getMetaDataStrings_throw(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSet> &,int)
int _nColumnIndex
1
@@ -306,7 +310,7 @@ dbaccess/source/ui/inc/charsets.hxx:47
class dbaui::OCharsetDisplay::ExtendedCharsetIterator dbaui::OCharsetDisplay::findEncoding(const unsigned short) const
const unsigned short _eEncoding
0
-dbaccess/source/ui/inc/FieldDescControl.hxx:129
+dbaccess/source/ui/inc/FieldDescControl.hxx:127
void dbaui::OFieldDescControl::InitializeControl(class dbaui::OPropListBoxCtrl *,const class rtl::OString &,_Bool)
_Bool _bAddChangeHandler
1
@@ -326,10 +330,6 @@ dbaccess/source/ui/inc/IUpdateHelper.hxx:33
void dbaui::IUpdateHelper::updateInt(int,int)
int _nPos
1
-dbaccess/source/ui/inc/opendoccontrols.hxx:76
- struct std::pair<class rtl::OUString, class rtl::OUString> dbaui::OpenDocumentListBox::impl_getDocumentAtIndex(unsigned short,_Bool) const
- _Bool _bSystemNotation
- 0
dbaccess/source/ui/inc/tabletree.hxx:202
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > dbaui::TableTreeListBox::GetEntryPosByName(const class rtl::OUString &,const class weld::TreeIter *,const class dbaui::IEntryFilter *) const
const class dbaui::IEntryFilter * _pFilter
@@ -342,103 +342,115 @@ dbaccess/source/ui/inc/WTypeSelect.hxx:124
void dbaui::OWizTypeSelect::EnableAuto(_Bool)
_Bool bEnable
0
-desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:182
- void dp_gui::ExtensionCmd::ExtensionCmd(const enum dp_gui::ExtensionCmd::E_CMD_TYPE,const class rtl::OUString &,const class rtl::OUString &,const _Bool)
- const enum dp_gui::ExtensionCmd::E_CMD_TYPE eCommand
- 0
desktop/source/deployment/gui/dp_gui_updatedialog.hxx:103
void dp_gui::UpdateDialog::addAdditional(struct dp_gui::UpdateDialog::Index *,_Bool)
_Bool bEnableCheckBox
0
-desktop/source/lib/init.cxx:5737
+desktop/source/lib/init.cxx:6004
struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *)
const char * user_profile_url
0
-editeng/source/editeng/editstt2.hxx:29
+editeng/source/editeng/editstt2.hxx:28
void InternalEditStatus::TurnOnFlags(enum EEControlBits)
enum EEControlBits nFlags
1
-editeng/source/editeng/editstt2.hxx:32
+editeng/source/editeng/editstt2.hxx:31
void InternalEditStatus::TurnOffFlags(enum EEControlBits)
enum EEControlBits nFlags
1
-editeng/source/editeng/impedit.hxx:838
+editeng/source/editeng/impedit.hxx:834
unsigned short ImpEditEngine::GetLineHeight(int,int)
int nLine
0
-extensions/source/propctrlr/browserline.cxx:326
- void implEnable(class vcl::Window *,_Bool)
- _Bool _bEnable
+extensions/source/propctrlr/browserline.cxx:241
+ void implEnable(class weld::Widget *,_Bool)
+ _Bool bEnable
+ 0
+extensions/source/propctrlr/browserline.hxx:96
+ void pcr::OBrowserLine::Show(_Bool)
+ _Bool bFlag
0
extensions/source/propctrlr/newdatatype.hxx:40
void pcr::NewDataTypeDialog::NewDataTypeDialog(class weld::Window *,const class rtl::OUString &,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
class weld::Window * _pParent
0
-extensions/source/propctrlr/propertyhandler.hxx:189
+extensions/source/propctrlr/propertyhandler.hxx:188
void pcr::PropertyHandler::addDoublePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
-extensions/source/propctrlr/propertyhandler.hxx:197
+extensions/source/propctrlr/propertyhandler.hxx:196
void pcr::PropertyHandler::addDatePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
-extensions/source/propctrlr/propertyhandler.hxx:205
+extensions/source/propctrlr/propertyhandler.hxx:204
void pcr::PropertyHandler::addTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
-extensions/source/propctrlr/propertyhandler.hxx:213
+extensions/source/propctrlr/propertyhandler.hxx:212
void pcr::PropertyHandler::addDateTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
+extensions/source/propctrlr/usercontrol.hxx:43
+ void pcr::OFormatSampleControl::OFormatSampleControl(class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
+ _Bool bReadOnly
+ 0
+extensions/source/propctrlr/usercontrol.hxx:92
+ void pcr::OFormattedNumericControl::OFormattedNumericControl(class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
+ _Bool bReadOnly
+ 0
+extensions/source/propctrlr/usercontrol.hxx:122
+ void pcr::OFileUrlControl::OFileUrlControl(class std::unique_ptr<class URLBox, struct std::default_delete<class URLBox> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
+ _Bool bReadOnly
+ 0
extensions/source/scanner/grid.cxx:130
void GridWindow::Init(double *,double *,int,_Bool,const class BitmapEx &)
_Bool bCutValues
1
-extensions/source/scanner/grid.hxx:48
+extensions/source/scanner/grid.hxx:47
void GridDialog::setBoundings(double,double,double,double)
double fMinX
0
-filter/qa/cppunit/filters-dxf-test.cxx:22
+filter/qa/cppunit/filters-dxf-test.cxx:19
_Bool idxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-eps-test.cxx:22
+filter/qa/cppunit/filters-eps-test.cxx:19
_Bool ipsGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-met-test.cxx:22
+filter/qa/cppunit/filters-met-test.cxx:19
_Bool imeGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-pcd-test.cxx:22
+filter/qa/cppunit/filters-pcd-test.cxx:19
_Bool icdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-pcx-test.cxx:22
+filter/qa/cppunit/filters-pcx-test.cxx:19
_Bool ipxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-pict-test.cxx:27
+filter/qa/cppunit/filters-pict-test.cxx:24
_Bool iptGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-ppm-test.cxx:22
+filter/qa/cppunit/filters-ppm-test.cxx:19
_Bool ipbGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-psd-test.cxx:22
+filter/qa/cppunit/filters-psd-test.cxx:19
_Bool ipdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-ras-test.cxx:22
+filter/qa/cppunit/filters-ras-test.cxx:19
_Bool iraGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-tga-test.cxx:22
+filter/qa/cppunit/filters-tga-test.cxx:19
_Bool itgGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
-filter/qa/cppunit/filters-tiff-test.cxx:22
+filter/qa/cppunit/filters-tiff-test.cxx:19
_Bool itiGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
@@ -450,35 +462,39 @@ filter/source/flash/swfwriter.hxx:322
void swf::Writer::Impl_writePolygon(const class tools::Polygon &,_Bool,const class Color &,const class Color &)
_Bool bFilled
1
-filter/source/graphicfilter/eps/eps.cxx:214
- void PSWriter::ImplWriteLineColor(unsigned long)
- unsigned long nMode
+filter/source/graphicfilter/eps/eps.cxx:91
+ enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode)
+ enum (anonymous namespace)::NMode a
1
-filter/source/graphicfilter/eps/eps.cxx:215
- void PSWriter::ImplWriteFillColor(unsigned long)
- unsigned long nMode
+filter/source/graphicfilter/eps/eps.cxx:212
+ void (anonymous namespace)::PSWriter::ImplWriteLineColor(enum (anonymous namespace)::NMode)
+ enum (anonymous namespace)::NMode nMode
1
-filter/source/graphicfilter/icgm/cgm.hxx:91
+filter/source/graphicfilter/eps/eps.cxx:213
+ void (anonymous namespace)::PSWriter::ImplWriteFillColor(enum (anonymous namespace)::NMode)
+ enum (anonymous namespace)::NMode nMode
+ 1
+filter/source/graphicfilter/icgm/cgm.hxx:89
unsigned char CGM::ImplGetByte(unsigned int,unsigned int)
unsigned int nPrecision
1
-filter/source/svg/svgfilter.hxx:252
+filter/source/svg/svgfilter.hxx:240
_Bool SVGFilter::implExportMasterPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int)
int nFirstPage
0
-filter/source/svg/svgfilter.hxx:254
+filter/source/svg/svgfilter.hxx:242
void SVGFilter::implExportDrawPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int)
int nFirstPage
0
-filter/source/svg/svgwriter.hxx:273
+filter/source/svg/svgwriter.hxx:253
void SVGTextWriter::startTextPosition(_Bool,_Bool)
_Bool bExportY
1
-forms/source/component/DatabaseForm.hxx:237
+forms/source/component/DatabaseForm.hxx:236
void frm::ODatabaseForm::fire(int *,const class com::sun::star::uno::Any *,const class com::sun::star::uno::Any *,int)
int nCount
1
-forms/source/component/GroupManager.hxx:149
+forms/source/component/GroupManager.hxx:148
const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> & frm::OGroup::GetObject(unsigned short) const
unsigned short nP
0
@@ -486,19 +502,23 @@ forms/source/inc/featuredispatcher.hxx:50
void frm::IFeatureDispatcher::dispatchWithArgument(short,const char *,const class com::sun::star::uno::Any &) const
short _nFeatureId
1
-formula/source/ui/dlg/structpg.hxx:60
+formula/source/ui/dlg/structpg.hxx:59
_Bool formula::StructPage::InsertEntry(const class rtl::OUString &,const class weld::TreeIter *,unsigned short,int,const class formula::FormulaToken *,class weld::TreeIter &)
int nPos
0
-fpicker/source/office/fileview.hxx:166
+fpicker/source/office/autocmpledit.hxx:40
+ void AutocompleteEdit::select_region(int,int)
+ int nStartPos
+ 0
+fpicker/source/office/fileview.hxx:163
void SvtFileView::EnableDelete(_Bool)
_Bool bEnable
1
-framework/inc/uielement/uicommanddescription.hxx:83
+framework/inc/uielement/uicommanddescription.hxx:82
void framework::UICommandDescription::UICommandDescription(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,_Bool)
_Bool
1
-helpcompiler/inc/HelpCompiler.hxx:59
+helpcompiler/inc/HelpCompiler.hxx:58
void fs::path::path(const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,enum fs::convert)
enum fs::convert
0
@@ -526,6 +546,14 @@ include/avmedia/mediaplayer.hxx:50
void avmedia::MediaFloater::setURL(const class rtl::OUString &,const class rtl::OUString &,_Bool)
_Bool bPlayImmediately
1
+include/basegfx/DrawCommands.hxx:58
+ void gfx::GradientInfo::GradientInfo(enum gfx::GradientType)
+ enum gfx::GradientType eType
+ 0
+include/basegfx/polygon/b2dlinegeometry.hxx:135
+ class basegfx::B2DPolyPolygon createAreaGeometry(const class basegfx::B2DPolygon &,double,enum basegfx::B2DLineJoin,enum com::sun::star::drawing::LineCap,double,double,double,class std::__debug::vector<class basegfx::triangulator::B2DTriangle, class std::allocator<class basegfx::triangulator::B2DTriangle> > *)
+ class std::__debug::vector<class basegfx::triangulator::B2DTriangle, class std::allocator<class basegfx::triangulator::B2DTriangle> > * pTriangles
+ 0
include/basegfx/polygon/b2dpolygon.hxx:84
void basegfx::B2DPolygon::insert(unsigned int,const class basegfx::B2DPoint &,unsigned int)
unsigned int nCount
@@ -568,11 +596,11 @@ include/basegfx/polygon/b2dpolypolygon.hxx:103
1
include/basegfx/polygon/b2dpolypolygon.hxx:138
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
- ###2
+ ###3
0
include/basegfx/polygon/b2dpolypolygon.hxx:138
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
- ###3
+ ###4
0
include/basegfx/polygon/b3dpolygon.hxx:72
void basegfx::B3DPolygon::append(const class basegfx::B3DPoint &,unsigned int)
@@ -606,15 +634,11 @@ include/basegfx/polygon/b3dpolypolygon.hxx:89
void basegfx::B3DPolyPolygon::remove(unsigned int,unsigned int)
unsigned int nCount
1
-include/basegfx/range/b2dpolyrange.hxx:73
- void basegfx::B2DPolyRange::appendElement(const class basegfx::B2DRange &,enum basegfx::B2VectorOrientation,unsigned int)
- unsigned int nCount
- 1
-include/basegfx/range/b2ibox.hxx:72
+include/basegfx/range/b2ibox.hxx:71
void basegfx::B2IBox::B2IBox(int,int,int,int)
int x1
0
-include/basegfx/range/b2ibox.hxx:72
+include/basegfx/range/b2ibox.hxx:71
void basegfx::B2IBox::B2IBox(int,int,int,int)
int y1
0
@@ -622,7 +646,7 @@ include/basegfx/utils/tools.hxx:118
class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
_Bool bLitSegments
1
-include/basic/basrdll.hxx:38
+include/basic/basrdll.hxx:37
void BasicDLL::EnableBreak(_Bool)
_Bool bEnable
1
@@ -642,7 +666,7 @@ include/canvas/parametricpolypolygon.hxx:139
void canvas::ParametricPolyPolygon::ParametricPolyPolygon(const class com::sun::star::uno::Reference<class com::sun::star::rendering::XGraphicDevice> &,enum canvas::ParametricPolyPolygon::GradientType,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<double> > &,const class com::sun::star::uno::Sequence<double> &)
enum canvas::ParametricPolyPolygon::GradientType eType
0
-include/canvas/spriteredrawmanager.hxx:111
+include/canvas/spriteredrawmanager.hxx:109
void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(const class rtl::Reference<class canvas::Sprite> &,const class basegfx::B2DRange &,_Bool,_Bool)
_Bool bNeedsUpdate
1
@@ -686,6 +710,10 @@ include/comphelper/lok.hxx:89
_Bool isCompatFlagSet(enum comphelper::LibreOfficeKit::Compat)
enum comphelper::LibreOfficeKit::Compat flag
1
+include/comphelper/lok.hxx:98
+ void setLanguageTag(const class rtl::OUString &,_Bool)
+ _Bool bCanonicalize
+ 1
include/comphelper/parallelsort.hxx:286
void s3sort(const type-parameter-?-?,const type-parameter-?-?,type-parameter-?-?,_Bool)
_Bool bThreaded
@@ -754,15 +782,19 @@ include/cppcanvas/color.hxx:61
int makeColorARGB(unsigned char,unsigned char,unsigned char,unsigned char)
unsigned char nAlpha
0
+include/cui/cuicharmap.hxx:146
+ void SvxCharacterMap::SvxCharacterMap(class weld::Widget *,const class SfxItemSet *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &)
+ const class SfxItemSet * pSet
+ 0
include/drawinglayer/processor2d/hittestprocessor2d.hxx:80
void drawinglayer::processor2d::HitTestProcessor2D::collectHitStack(_Bool)
_Bool bCollect
1
-include/drawinglayer/XShapeDumper.hxx:25
+include/drawinglayer/XShapeDumper.hxx:23
class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShapes> &,_Bool)
_Bool bDumpInteropProperties
0
-include/drawinglayer/XShapeDumper.hxx:26
+include/drawinglayer/XShapeDumper.hxx:24
class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,_Bool)
_Bool bDumpInteropProperties
0
@@ -782,23 +814,23 @@ include/editeng/colritem.hxx:69
void SvxBackgroundColorItem::SvxBackgroundColorItem(const unsigned short)
const unsigned short nId
0
-include/editeng/editeng.hxx:539
+include/editeng/editeng.hxx:544
void EditEngine::dumpAsXmlEditDoc(struct _xmlTextWriter *) const
struct _xmlTextWriter * pWriter
0
-include/editeng/editeng.hxx:564
+include/editeng/editeng.hxx:569
class EditPaM EditEngine::CursorLeft(const class EditPaM &,unsigned short)
unsigned short nCharacterIteratorMode
0
-include/editeng/editobj.hxx:115
- const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
- int nPara
- 0
-include/editeng/editobj.hxx:115
+include/editeng/editobj.hxx:120
const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
int nType
1
-include/editeng/editobj.hxx:115
+include/editeng/editobj.hxx:120
+ const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
+ int nPara
+ 0
+include/editeng/editobj.hxx:120
const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
unsigned long nPos
0
@@ -806,11 +838,11 @@ include/editeng/edtdlg.hxx:79
enum editeng::HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog::GetDirection(enum editeng::HangulHanjaConversion::ConversionDirection) const
enum editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection
0
-include/editeng/outliner.hxx:239
+include/editeng/outliner.hxx:240
void OutlinerView::SelectRange(int,int)
int nFirst
0
-include/editeng/outliner.hxx:625
+include/editeng/outliner.hxx:626
_Bool Outliner::ImpCanDeleteSelectedPages(class OutlinerView *,int,int)
int nPages
1
@@ -818,35 +850,47 @@ include/editeng/pmdlitem.hxx:40
void SvxPageModelItem::SvxPageModelItem(unsigned short)
unsigned short nWh
0
-include/editeng/splwrap.hxx:74
- void SvxSpellWrapper::SvxSpellWrapper(class vcl::Window *,const _Bool,const _Bool)
+include/editeng/splwrap.hxx:73
+ void SvxSpellWrapper::SvxSpellWrapper(class weld::Window *,const _Bool,const _Bool)
const _Bool bIsAllRight
0
+include/editeng/txtrange.hxx:63
+ void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
+ _Bool bVert
+ 0
+include/editeng/txtrange.hxx:63
+ void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
+ _Bool bInner
+ 1
include/filter/msfilter/escherex.hxx:493
void EscherExAtom::EscherExAtom(class SvStream &,const unsigned short,const unsigned short,const unsigned char)
const unsigned char nVersion
0
-include/filter/msfilter/escherex.hxx:588
+include/filter/msfilter/escherex.hxx:585
void EscherGraphicProvider::WriteBlibStoreEntry(class SvStream &,unsigned int,unsigned int)
unsigned int nBlipId
1
-include/filter/msfilter/escherex.hxx:798
+include/filter/msfilter/escherex.hxx:795
void EscherPropertyContainer::CreateFillProperties(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &)
_Bool bEdge
1
-include/filter/msfilter/escherex.hxx:1143
+include/filter/msfilter/escherex.hxx:1140
void EscherEx::EndAtom(unsigned short,int,int)
int nRecVersion
0
-include/filter/msfilter/msdffimp.hxx:711
+include/filter/msfilter/msdffimp.hxx:710
void SvxMSDffManager::ExchangeInShapeOrder(const class SdrObject *,unsigned long,class SdrObject *) const
unsigned long nTxBx
0
-include/filter/msfilter/msdffimp.hxx:764
+include/filter/msfilter/msdffimp.hxx:763
+ void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
+ unsigned int nId
+ 0
+include/filter/msfilter/msdffimp.hxx:763
void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
unsigned short nSeqId
0
-include/filter/msfilter/msdffimp.hxx:764
+include/filter/msfilter/msdffimp.hxx:763
void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
unsigned short nBoxId
0
@@ -882,6 +926,10 @@ include/o3tl/strong_int.hxx:110
strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator++(int)
###1
0
+include/oox/drawingml/shape.hxx:105
+ void oox::drawingml::Shape::Shape(const char *,_Bool)
+ _Bool bDefaultHeight
+ 1
include/oox/export/vmlexport.hxx:140
const class rtl::OString & oox::vml::VMLExport::AddInlineSdrObject(const class SdrObject &,const _Bool)
const _Bool bOOxmlExport
@@ -898,7 +946,7 @@ include/oox/helper/containerhelper.hxx:114
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type) const
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type nY
0
-include/oox/helper/helper.hxx:101
+include/oox/helper/helper.hxx:116
type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
type-parameter-?-? nBegin
0
@@ -906,6 +954,10 @@ include/oox/mathml/importutils.hxx:210
void oox::formulaimport::XmlStream::skipElementInternal(int,_Bool)
_Bool silent
0
+include/oox/ole/olestorage.hxx:47
+ void oox::ole::OleStorage::OleStorage(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,_Bool)
+ _Bool bBaseStreamAccess
+ 0
include/oox/ole/olestorage.hxx:60
void oox::ole::OleStorage::OleStorage(const class oox::ole::OleStorage &,const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,_Bool)
_Bool bReadOnly
@@ -918,6 +970,14 @@ include/oox/ole/vbaexport.hxx:90
void VBACompressionChunk::SetFlagBit(unsigned long,_Bool,unsigned char &)
_Bool bVal
1
+include/oox/vml/vmldrawing.hxx:70
+ void oox::vml::OleObjectInfo::OleObjectInfo(_Bool)
+ _Bool bDmlShape
+ 0
+include/oox/vml/vmldrawing.hxx:97
+ void oox::vml::Drawing::Drawing(class oox::core::XmlFilterBase &,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,enum oox::vml::DrawingType)
+ enum oox::vml::DrawingType eType
+ 1
include/oox/vml/vmlformatting.hxx:123
int decodeMeasureToHmm(const class oox::GraphicHelper &,const class rtl::OUString &,int,_Bool,_Bool)
int nRefValue
@@ -934,18 +994,18 @@ include/package/Deflater.hxx:42
int ZipUtils::Deflater::doDeflateBytes(class com::sun::star::uno::Sequence<signed char> &,int,int)
int nNewOffset
0
-include/sfx2/dispatch.hxx:149
+include/sfx2/dispatch.hxx:151
enum ToolbarId SfxDispatcher::GetObjectBarId(unsigned short) const
unsigned short nPos
1
-include/sfx2/docfile.hxx:97
- void SfxMedium::SfxMedium(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class rtl::OUString &,const class rtl::OUString &,const class SfxItemSet *)
- const class SfxItemSet * pSet
- 0
-include/sfx2/docfile.hxx:174
+include/sfx2/docfile.hxx:163
void SfxMedium::DisableFileSync(_Bool)
_Bool bDisableFileSync
1
+include/sfx2/docfilt.hxx:65
+ void SfxFilter::SfxFilter(const class rtl::OUString &,const class rtl::OUString &,enum SfxFilterFlags,enum SotClipboardFormatId,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,_Bool)
+ _Bool bEnabled
+ 1
include/sfx2/event.hxx:239
void SfxPrintingHint::SfxPrintingHint(enum com::sun::star::view::PrintableState,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,class SfxObjectShell *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XController2> &)
enum com::sun::star::view::PrintableState nState
@@ -958,7 +1018,7 @@ include/sfx2/filedlghelper.hxx:109
void sfx2::FileDialogHelper::FileDialogHelper(short,enum FileDialogFlags,const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags,class weld::Window *)
enum SfxFilterFlags nDont
0
-include/sfx2/lokhelper.hxx:53
+include/sfx2/lokhelper.hxx:76
void SfxLokHelper::notifyDocumentSizeChangedAllViews(class vcl::ITiledRenderable *,_Bool)
_Bool bInvalidateAll
1
@@ -966,6 +1026,14 @@ include/sfx2/notebookbar/SfxNotebookBar.hxx:55
void sfx2::SfxNotebookBar::ShowMenubar(const class SfxViewFrame *,_Bool)
_Bool bShow
1
+include/sfx2/objsh.hxx:664
+ void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool)
+ _Bool bShowCloseButton
+ 1
+include/sfx2/opengrf.hxx:44
+ void SvxOpenGraphicDialog::SetPath(const class rtl::OUString &,_Bool)
+ _Bool bLinkState
+ 1
include/sfx2/opengrf.hxx:49
void SvxOpenGraphicDialog::EnableLink(_Bool)
_Bool
@@ -1006,35 +1074,35 @@ include/sfx2/thumbnailview.hxx:360
void SfxThumbnailView::ShowTooltips(_Bool)
_Bool bShowTooltips
1
-include/sot/stg.hxx:158
+include/sot/stg.hxx:157
void Storage::Storage(const class rtl::OUString &,enum StreamMode,_Bool)
_Bool bDirect
1
-include/sot/stg.hxx:250
+include/sot/stg.hxx:249
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
enum StreamMode nMode
1
-include/sot/stg.hxx:250
+include/sot/stg.hxx:249
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bIsRoot
1
-include/sot/stg.hxx:250
+include/sot/stg.hxx:249
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bDirect
0
-include/sot/stg.hxx:256
+include/sot/stg.hxx:255
void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bDirect
1
-include/sot/stg.hxx:256
+include/sot/stg.hxx:255
void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bIsRoot
1
-include/sot/stg.hxx:261
+include/sot/stg.hxx:260
void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XProgressHandler> &)
_Bool bIsRoot
0
-include/sot/stg.hxx:271
+include/sot/stg.hxx:270
void UCBStorage::UCBStorage(class SvStream &,_Bool)
_Bool bDirect
0
@@ -1098,15 +1166,19 @@ include/svtools/HtmlWriter.hxx:38
void HtmlWriter::prettyPrint(_Bool)
_Bool b
0
-include/svtools/inettbc.hxx:63
+include/svtools/inettbc.hxx:56
void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool)
enum INetProtocol eSmart
0
-include/svtools/inettbc.hxx:63
+include/svtools/inettbc.hxx:56
void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool)
_Bool bSetDefaultHelpID
1
-include/svtools/ruler.hxx:732
+include/svtools/inettbc.hxx:114
+ void URLBox::select_entry_region(int,int)
+ int nStartPos
+ 0
+include/svtools/ruler.hxx:733
void Ruler::SetWinPos(long,long)
long nWidth
0
@@ -1114,22 +1186,26 @@ include/svtools/stringtransfer.hxx:65
void svt::OStringTransfer::StartStringDrag(const class rtl::OUString &,class vcl::Window *,signed char)
signed char _nDragSourceActions
1
-include/svtools/svmedit2.hxx:37
- void ExtMultiLineEdit::SetAttrib(const class TextAttrib &,unsigned int,int,int)
- int nStart
+include/svtools/unitconv.hxx:39
+ void SetFieldUnit(class MetricField &,enum FieldUnit,_Bool)
+ _Bool bAll
0
-include/svtools/valueset.hxx:322
- void ValueSet::EnableFullItemMode(_Bool)
- _Bool bFullMode
+include/svtools/valueset.hxx:297
+ void ValueSet::InsertItem(unsigned short,const class Image &,const class rtl::OUString &,unsigned long,_Bool)
+ _Bool bShowLegend
0
-include/svtools/valueset.hxx:356
- void ValueSet::SetItemColor(unsigned short,const class Color &)
- unsigned short nItemId
- 1
-include/svtools/valueset.hxx:379
+include/svtools/valueset.hxx:354
class Size ValueSet::CalcWindowSizePixel(const class Size &,unsigned short,unsigned short) const
unsigned short nCalcLines
0
+include/svtools/valueset.hxx:496
+ void SvtValueSet::EnableFullItemMode(_Bool)
+ _Bool bFullMode
+ 0
+include/svtools/valueset.hxx:534
+ void SvtValueSet::SetItemColor(unsigned short,const class Color &)
+ unsigned short nItemId
+ 1
include/svx/algitem.hxx:35
void SvxOrientationItem::SvxOrientationItem(const enum SvxCellOrientation,const unsigned short)
const unsigned short nId
@@ -1138,15 +1214,15 @@ include/svx/algitem.hxx:39
void SvxOrientationItem::SvxOrientationItem(int,_Bool,const unsigned short)
const unsigned short nId
0
-include/svx/colorbox.hxx:60
- void SvxColorListBox::SetSlotId(unsigned short,_Bool)
- _Bool bShowNoneButton
+include/svx/colorbox.hxx:50
+ void SvxColorListBox::SvxColorListBox(class vcl::Window *,long)
+ long nStyle
0
-include/svx/ctredlin.hxx:193
+include/svx/ctredlin.hxx:210
void SvxTPFilter::SelectedAuthorPos(int)
int nPos
0
-include/svx/ctredlin.hxx:216
+include/svx/ctredlin.hxx:233
void SvxTPFilter::CheckAction(_Bool)
_Bool bFlag
0
@@ -1182,7 +1258,7 @@ include/svx/frmsel.hxx:144
void svx::FrameSelector::SelectAllBorders(_Bool)
_Bool bSelect
0
-include/svx/gridctrl.hxx:392
+include/svx/gridctrl.hxx:391
void DbGridControl::RemoveRows(_Bool)
_Bool bNewCursor
0
@@ -1190,10 +1266,6 @@ include/svx/IAccessibleParent.hxx:80
_Bool accessibility::IAccessibleParent::ReplaceChild(class accessibility::AccessibleShape *,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const long,const class accessibility::AccessibleShapeTreeInfo &)
const long _nIndex
0
-include/svx/langbox.hxx:88
- void SvxLanguageBoxBase::ImplSelectEntryPos(int,_Bool)
- _Bool bSelect
- 1
include/svx/nbdtmg.hxx:130
unsigned short svx::sidebar::NBOTypeMgrBase::GetNBOIndexForNumRule(class SvxNumRule &,unsigned short,unsigned short)
unsigned short nFromIndex
@@ -1226,19 +1298,15 @@ include/svx/relfld.hxx:50
void RelativeField::EnableRelativeMode(unsigned short,unsigned short)
unsigned short nMin
0
-include/svx/relfld.hxx:56
- void RelativeField::set_value(int,enum FieldUnit)
- enum FieldUnit eValueUnit
- 0
include/svx/relfld.hxx:58
int RelativeField::get_min(enum FieldUnit) const
enum FieldUnit eValueUnit
0
-include/svx/relfld.hxx:70
+include/svx/relfld.hxx:73
void RelativeField::SetFieldUnit(enum FieldUnit,_Bool)
_Bool bAll
0
-include/svx/rulritem.hxx:129
+include/svx/rulritem.hxx:123
void SvxColumnDescription::SvxColumnDescription(long,long,_Bool)
_Bool bVis
1
@@ -1250,13 +1318,13 @@ include/svx/sdr/overlay/overlayobject.hxx:126
void sdr::overlay::OverlayObject::allowAntiAliase(_Bool)
_Bool bNew
0
-include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:107
+include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:106
void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::shared_ptr<class std::__debug::vector<class drawinglayer::primitive2d::SdrFrameBorderData, class std::allocator<class drawinglayer::primitive2d::SdrFrameBorderData> > > &,_Bool,_Bool)
- _Bool bForceToSingleDiscreteUnit
+ _Bool bMergeResult
1
-include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:107
+include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:106
void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::shared_ptr<class std::__debug::vector<class drawinglayer::primitive2d::SdrFrameBorderData, class std::allocator<class drawinglayer::primitive2d::SdrFrameBorderData> > > &,_Bool,_Bool)
- _Bool bMergeResult
+ _Bool bForceToSingleDiscreteUnit
1
include/svx/svdhlpln.hxx:43
void SdrHelpLine::SdrHelpLine(enum SdrHelpLineKind)
@@ -1294,19 +1362,19 @@ include/svx/svxdlg.hxx:93
void AbstractSvxZoomDialog::HideButton(enum ZoomButtonId)
enum ZoomButtonId nBtnId
1
-include/svx/SvxPresetListBox.hxx:57
+include/svx/SvxPresetListBox.hxx:56
void SvxPresetListBox::FillPresetListBox(class XGradientList &,unsigned int)
unsigned int nStartIndex
1
-include/svx/SvxPresetListBox.hxx:58
+include/svx/SvxPresetListBox.hxx:57
void SvxPresetListBox::FillPresetListBox(class XHatchList &,unsigned int)
unsigned int nStartIndex
1
-include/svx/SvxPresetListBox.hxx:59
+include/svx/SvxPresetListBox.hxx:58
void SvxPresetListBox::FillPresetListBox(class XBitmapList &,unsigned int)
unsigned int nStartIndex
1
-include/svx/SvxPresetListBox.hxx:60
+include/svx/SvxPresetListBox.hxx:59
void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int)
unsigned int nStartIndex
1
@@ -1334,22 +1402,26 @@ include/svx/sxmtritm.hxx:42
void SdrMeasureTextUpsideDownItem::SdrMeasureTextUpsideDownItem(_Bool)
_Bool bOn
0
-include/svx/textchain.hxx:139
- void TextChain::SetPendingOverflowCheck(const class SdrTextObj *,_Bool)
- _Bool
- 1
-include/svx/txencbox.hxx:124
- void SvxTextEncodingTreeView::FillFromTextEncodingTable(_Bool,unsigned int,unsigned int)
- unsigned int nButIncludeInfoFlags
- 0
include/svx/unopool.hxx:44
void SvxUnoDrawPool::SvxUnoDrawPool(class SdrModel *,int)
int nServiceId
1
+include/svx/unoshtxt.hxx:54
+ void SvxTextEditSource::SvxTextEditSource(class SdrObject &,class SdrText *,class SdrView &,const class OutputDevice &)
+ class SdrText * pText
+ 0
+include/svx/verttexttbxctrl.hxx:33
+ void SvxVertCTLTextTbxCtrl_Base::ImplInheritanceHelper(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,nullptr_t &&,class rtl::OUString &&)
+ nullptr_t &&
+ 0
include/svx/xflbmsli.hxx:29
void XFillBmpSizeLogItem::XFillBmpSizeLogItem(_Bool)
_Bool bLog
1
+include/svx/xflftrit.hxx:40
+ void XFillFloatTransparenceItem::XFillFloatTransparenceItem(const class rtl::OUString &,const class XGradient &,_Bool)
+ _Bool bEnable
+ 1
include/svx/xftshtit.hxx:34
void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short)
unsigned short nShdwTransparence
@@ -1362,7 +1434,7 @@ include/test/sheet/xactivationbroadcaster.hxx:24
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XActivationBroadcaster::getXSpreadsheet(const short)
const short nNumber
1
-include/test/sheet/xdocumentauditing.hxx:37
+include/test/sheet/xdocumentauditing.hxx:36
_Bool apitest::XDocumentAuditing::hasRightAmountOfShapes(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,int,int)
int nShapes
1
@@ -1370,6 +1442,22 @@ include/test/sheet/xnamedranges.hxx:39
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRanges::getXNamedRanges(int)
int nSheet
1
+include/test/text/textcontent.hxx:25
+ void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
+ const enum com::sun::star::text::TextContentAnchorType aExpectedTCAT
+ 1
+include/test/text/textcontent.hxx:25
+ void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
+ const enum com::sun::star::text::TextContentAnchorType aNewTCAT
+ 1
+include/test/text/textcontent.hxx:25
+ void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
+ const enum com::sun::star::text::WrapTextMode aExpectedWTM
+ 0
+include/test/text/textcontent.hxx:25
+ void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
+ const enum com::sun::star::text::WrapTextMode aNewWTM
+ 0
include/tools/date.hxx:71
void Date::Date(enum Date::DateInitEmpty)
enum Date::DateInitEmpty
@@ -1390,23 +1478,7 @@ include/tools/fract.hxx:45
void Fraction::Fraction(type-parameter-?-?,type-parameter-?-?,typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type)
typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type
0
-include/tools/stream.hxx:585
- _Bool SvFileStream::LockRange(unsigned long,unsigned long)
- unsigned long nBytes
- 0
-include/tools/stream.hxx:585
- _Bool SvFileStream::LockRange(unsigned long,unsigned long)
- unsigned long nByteOffset
- 0
-include/tools/stream.hxx:586
- _Bool SvFileStream::UnlockRange(unsigned long,unsigned long)
- unsigned long nBytes
- 0
-include/tools/stream.hxx:586
- _Bool SvFileStream::UnlockRange(unsigned long,unsigned long)
- unsigned long nByteOffset
- 0
-include/tools/stream.hxx:665
+include/tools/stream.hxx:662
void SvMemoryStream::ObjectOwnsMemory(_Bool)
_Bool bOwn
1
@@ -1458,7 +1530,7 @@ include/unotools/cmdoptions.hxx:88
_Bool SvtCommandOptions::Lookup(enum SvtCommandOptions::CmdOption,const class rtl::OUString &) const
enum SvtCommandOptions::CmdOption eOption
0
-include/unotools/confignode.hxx:260
+include/unotools/confignode.hxx:254
class utl::OConfigurationTreeRoot utl::OConfigurationTreeRoot::tryCreateWithComponentContext(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,int,enum utl::OConfigurationTreeRoot::CREATION_MODE)
enum utl::OConfigurationTreeRoot::CREATION_MODE _eMode
1
@@ -1466,10 +1538,14 @@ include/unotools/fontdefs.hxx:50
void ConvertChar::RecodeString(class rtl::OUString &,int,int) const
int nIndex
0
-include/unotools/historyoptions.hxx:92
+include/unotools/historyoptions.hxx:93
void SvtHistoryOptions::DeleteItem(enum EHistoryType,const class rtl::OUString &)
enum EHistoryType eHistory
0
+include/unotools/localedatawrapper.hxx:280
+ double LocaleDataWrapper::stringToDouble(const class rtl::OUString &,_Bool,enum rtl_math_ConversionStatus *,int *) const
+ _Bool bUseGroupSep
+ 1
include/unotools/localedatawrapper.hxx:310
double LocaleDataWrapper::stringToDouble(const char16_t *,const char16_t *,_Bool,enum rtl_math_ConversionStatus *,const char16_t **) const
_Bool bUseGroupSep
@@ -1526,23 +1602,19 @@ include/vcl/alpha.hxx:58
void AlphaMask::Replace(unsigned char,unsigned char)
unsigned char cSearchTransparency
0
-include/vcl/bitmapex.hxx:324
- class tools::Polygon BitmapEx::GetContour(_Bool,_Bool,const class tools::Rectangle *)
- _Bool bContourVert
- 0
include/vcl/dibtools.hxx:40
_Bool ReadDIB(class Bitmap &,class SvStream &,_Bool,_Bool)
_Bool bMSOFormat
0
-include/vcl/dibtools.hxx:46
- _Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool)
- _Bool bFileHeader
- 1
include/vcl/dibtools.hxx:46
_Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool)
_Bool bMSOFormat
0
-include/vcl/edit.hxx:102
+include/vcl/dibtools.hxx:46
+ _Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool)
+ _Bool bFileHeader
+ 1
+include/vcl/edit.hxx:101
void Edit::ImplClearBackground(class OutputDevice &,const class tools::Rectangle &,long,long)
long nXStart
0
@@ -1558,27 +1630,35 @@ include/vcl/field.hxx:82
void FormatterBase::EnableEmptyFieldValue(_Bool)
_Bool bEnable
1
-include/vcl/field.hxx:507
+include/vcl/field.hxx:223
+ _Bool MetricFormatter::TextToValue(const class rtl::OUString &,double &,long,unsigned short,const class LocaleDataWrapper &,enum FieldUnit)
+ long nBaseValue
+ 0
+include/vcl/field.hxx:467
double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
long nBaseValue
0
-include/vcl/field.hxx:507
+include/vcl/field.hxx:467
double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
unsigned short nDecDigits
0
-include/vcl/graphicfilter.hxx:290
+include/vcl/fmtfield.hxx:122
+ void FormattedField::EnableEmptyField(_Bool)
+ _Bool bEnable
+ 1
+include/vcl/graphicfilter.hxx:298
class ErrCode GraphicFilter::ImportGraphic(class Graphic &,const class rtl::OUString &,class SvStream &,unsigned short,unsigned short *,enum GraphicFilterImportFlags,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *,const struct WmfExternal *)
const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> * pFilterData
0
-include/vcl/lstbox.hxx:152
- void ListBox::EnableDDAutoWidth(_Bool)
- _Bool b
+include/vcl/image.hxx:48
+ void Image::Image(enum StockImage,const class rtl::OUString &,class Size)
+ enum StockImage
0
-include/vcl/lstbox.hxx:235
+include/vcl/lstbox.hxx:232
void ListBox::EnableUserDraw(_Bool)
_Bool bUserDraw
1
-include/vcl/lstbox.hxx:280
+include/vcl/lstbox.hxx:277
void ListBox::EnableQuickSelection(_Bool)
_Bool b
0
@@ -1586,10 +1666,6 @@ include/vcl/mtfxmldump.hxx:34
void MetafileXmlDump::filterActionType(const enum MetaActionType,_Bool)
_Bool bShouldFilter
0
-include/vcl/oldprintadaptor.hxx:38
- void vcl::OldStylePrintAdaptor::OldStylePrintAdaptor(const class VclPtr<class Printer> &,class weld::Window *)
- class weld::Window *
- 0
include/vcl/outdev.hxx:529
_Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const
enum OutDevSupportType
@@ -1630,6 +1706,10 @@ include/vcl/pdfread.hxx:41
_Bool ImportPDF(class SvStream &,class Bitmap &,unsigned long,class std::__debug::vector<signed char, class std::allocator<signed char> > &,unsigned long,unsigned long,double)
unsigned long nPageIndex
0
+include/vcl/settings.hxx:675
+ void AllSettings::SetLanguageTag(const class rtl::OUString &,_Bool)
+ _Bool bCanonicalize
+ 1
include/vcl/splitwin.hxx:137
void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags)
unsigned short nIntoSetId
@@ -1642,15 +1722,7 @@ include/vcl/status.hxx:36
void DrawProgress(class vcl::Window *,class OutputDevice &,const class Point &,long,long,long,unsigned short,unsigned short,unsigned short,const class tools::Rectangle &)
unsigned short nPercent1
0
-include/vcl/svimpbox.hxx:187
- void SvImpLBox::FindMostRight(class SvTreeListEntry *,class SvTreeListEntry *)
- class SvTreeListEntry * EntryToIgnore
- 0
-include/vcl/svimpbox.hxx:283
- void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool)
- _Bool bSelect
- 0
-include/vcl/syschild.hxx:50
+include/vcl/syschild.hxx:51
void SystemChildWindow::EnableEraseBackground(_Bool)
_Bool bEnable
0
@@ -1658,39 +1730,35 @@ include/vcl/TaskStopwatch.hxx:76
void TaskStopwatch::TaskStopwatch(_Bool)
_Bool bConciderLastIterTime
1
-include/vcl/texteng.hxx:263
+include/vcl/texteng.hxx:262
void TextEngine::UndoActionStart(unsigned short)
unsigned short nId
0
-include/vcl/texteng.hxx:288
- void TextEngine::SetAttrib(const class TextAttrib &,unsigned int,int,int,_Bool)
- _Bool bIdleFormatAndUpdate
- 1
include/vcl/timer.hxx:55
void Timer::Invoke(class Timer *)
class Timer * arg
0
-include/vcl/toolbox.hxx:317
+include/vcl/toolbox.hxx:316
void ToolBox::InsertWindow(unsigned short,class vcl::Window *,enum ToolBoxItemBits,unsigned long)
enum ToolBoxItemBits nBits
0
-include/vcl/toolbox.hxx:423
+include/vcl/toolbox.hxx:420
class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign)
unsigned long nCalcLines
1
-include/vcl/toolbox.hxx:447
+include/vcl/toolbox.hxx:444
void ToolBox::EnableCustomize(_Bool)
_Bool bEnable
1
-include/vcl/treelistbox.hxx:658
+include/vcl/treelistbox.hxx:655
void SvTreeListBox::MakeVisible(class SvTreeListEntry *,_Bool)
_Bool bMoveToTop
1
-include/vcl/treelistbox.hxx:684
+include/vcl/treelistbox.hxx:681
unsigned long SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool)
_Bool bSelect
0
-include/vcl/treelistbox.hxx:708
+include/vcl/treelistbox.hxx:705
void SvTreeListBox::EnableAsyncDrag(_Bool)
_Bool b
1
@@ -1730,155 +1798,155 @@ include/vcl/vectorgraphicdata.hxx:84
void VectorGraphicData::VectorGraphicData(const class rtl::OUString &,enum VectorGraphicDataType)
enum VectorGraphicDataType eVectorDataType
0
-include/vcl/weld.hxx:288
+include/vcl/weld.hxx:300
void weld::ScrolledWindow::hadjustment_configure(int,int,int,int,int,int)
int step_increment
1
-include/vcl/weld.hxx:306
+include/vcl/weld.hxx:319
void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int)
int lower
0
-include/vcl/weld.hxx:317
+include/vcl/weld.hxx:331
void weld::ScrolledWindow::vadjustment_set_lower(int)
int upper
0
-include/vcl/weld.hxx:799
+include/vcl/weld.hxx:829
void weld::TreeView::set_text_emphasis(int,_Bool,int)
_Bool bOn
1
-include/vcl/weld.hxx:800
+include/vcl/weld.hxx:830
_Bool weld::TreeView::get_text_emphasis(int,int) const
int col
0
-include/vcl/weld.hxx:875
- void weld::TreeView::set_toggle(const class weld::TreeIter &,enum TriState,int)
- int col
- 0
-include/vcl/weld.hxx:1805
- void weld::Menu::set_visible(const class rtl::OString &,_Bool)
- _Bool bVisible
+include/vcl/weld.hxx:1082
+ class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > weld::IconView::make_iterator(const class weld::TreeIter *) const
+ const class weld::TreeIter * pOrig
0
-include/vcl/weld.hxx:1878
+include/vcl/weld.hxx:2042
class std::unique_ptr<class weld::MessageDialog, struct std::default_delete<class weld::MessageDialog> > weld::Builder::weld_message_dialog(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/weld.hxx:1881
+include/vcl/weld.hxx:2045
class std::unique_ptr<class weld::Dialog, struct std::default_delete<class weld::Dialog> > weld::Builder::weld_dialog(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/weld.hxx:1882
+include/vcl/weld.hxx:2046
class std::unique_ptr<class weld::AboutDialog, struct std::default_delete<class weld::AboutDialog> > weld::Builder::weld_about_dialog(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/weld.hxx:1885
+include/vcl/weld.hxx:2049
class std::unique_ptr<class weld::Assistant, struct std::default_delete<class weld::Assistant> > weld::Builder::weld_assistant(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/weld.hxx:1888
+include/vcl/weld.hxx:2052
class std::unique_ptr<class weld::Widget, struct std::default_delete<class weld::Widget> > weld::Builder::weld_widget(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1889
+include/vcl/weld.hxx:2053
class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> > weld::Builder::weld_container(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1892
+include/vcl/weld.hxx:2056
class std::unique_ptr<class weld::Box, struct std::default_delete<class weld::Box> > weld::Builder::weld_box(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1893
+include/vcl/weld.hxx:2057
class std::unique_ptr<class weld::Button, struct std::default_delete<class weld::Button> > weld::Builder::weld_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1894
+include/vcl/weld.hxx:2058
class std::unique_ptr<class weld::MenuButton, struct std::default_delete<class weld::MenuButton> > weld::Builder::weld_menu_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1898
+include/vcl/weld.hxx:2062
class std::unique_ptr<class weld::ScrolledWindow, struct std::default_delete<class weld::ScrolledWindow> > weld::Builder::weld_scrolled_window(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1901
+include/vcl/weld.hxx:2065
class std::unique_ptr<class weld::Notebook, struct std::default_delete<class weld::Notebook> > weld::Builder::weld_notebook(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1906
+include/vcl/weld.hxx:2070
class std::unique_ptr<class weld::RadioButton, struct std::default_delete<class weld::RadioButton> > weld::Builder::weld_radio_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1909
+include/vcl/weld.hxx:2073
class std::unique_ptr<class weld::CheckButton, struct std::default_delete<class weld::CheckButton> > weld::Builder::weld_check_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1912
+include/vcl/weld.hxx:2076
class std::unique_ptr<class weld::LinkButton, struct std::default_delete<class weld::LinkButton> > weld::Builder::weld_link_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1919
+include/vcl/weld.hxx:2083
class std::unique_ptr<class weld::MetricSpinButton, struct std::default_delete<class weld::MetricSpinButton> > weld::Builder::weld_metric_spin_button(const class rtl::OString &,enum FieldUnit,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1921
+include/vcl/weld.hxx:2085
class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> > weld::Builder::weld_formatted_spin_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1923
+include/vcl/weld.hxx:2087
class std::unique_ptr<class weld::TimeSpinButton, struct std::default_delete<class weld::TimeSpinButton> > weld::Builder::weld_time_spin_button(const class rtl::OString &,enum TimeFieldFormat,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1925
+include/vcl/weld.hxx:2089
class std::unique_ptr<class weld::ComboBox, struct std::default_delete<class weld::ComboBox> > weld::Builder::weld_combo_box(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1929
+include/vcl/weld.hxx:2093
+ class std::unique_ptr<class weld::IconView, struct std::default_delete<class weld::IconView> > weld::Builder::weld_icon_view(const class rtl::OString &,_Bool)
+ _Bool bTakeOwnership
+ 0
+include/vcl/weld.hxx:2095
class std::unique_ptr<class weld::Label, struct std::default_delete<class weld::Label> > weld::Builder::weld_label(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1930
+include/vcl/weld.hxx:2096
class std::unique_ptr<class weld::TextView, struct std::default_delete<class weld::TextView> > weld::Builder::weld_text_view(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1932
+include/vcl/weld.hxx:2098
class std::unique_ptr<class weld::Expander, struct std::default_delete<class weld::Expander> > weld::Builder::weld_expander(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1935
+include/vcl/weld.hxx:2101
class std::unique_ptr<class weld::Scale, struct std::default_delete<class weld::Scale> > weld::Builder::weld_scale(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1936
+include/vcl/weld.hxx:2102
class std::unique_ptr<class weld::ProgressBar, struct std::default_delete<class weld::ProgressBar> > weld::Builder::weld_progress_bar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1939
+include/vcl/weld.hxx:2105
class std::unique_ptr<class weld::Spinner, struct std::default_delete<class weld::Spinner> > weld::Builder::weld_spinner(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1941
+include/vcl/weld.hxx:2107
class std::unique_ptr<class weld::Image, struct std::default_delete<class weld::Image> > weld::Builder::weld_image(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1942
+include/vcl/weld.hxx:2108
class std::unique_ptr<class weld::Calendar, struct std::default_delete<class weld::Calendar> > weld::Builder::weld_calendar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1945
+include/vcl/weld.hxx:2111
class std::unique_ptr<class weld::DrawingArea, struct std::default_delete<class weld::DrawingArea> > weld::Builder::weld_drawing_area(const class rtl::OString &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class std::function<class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > (class vcl::Window *)>,void *,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1950
+include/vcl/weld.hxx:2116
class std::unique_ptr<class weld::EntryTreeView, struct std::default_delete<class weld::EntryTreeView> > weld::Builder::weld_entry_tree_view(const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
-include/vcl/weld.hxx:1953
+include/vcl/weld.hxx:2119
class std::unique_ptr<class weld::Menu, struct std::default_delete<class weld::Menu> > weld::Builder::weld_menu(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/weld.hxx:1954
+include/vcl/weld.hxx:2120
class std::unique_ptr<class weld::Toolbar, struct std::default_delete<class weld::Toolbar> > weld::Builder::weld_toolbar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
-include/vcl/window.hxx:606
+include/vcl/window.hxx:607
void vcl::Window::ImplSetMouseTransparent(_Bool)
_Bool bTransparent
1
@@ -1886,6 +1954,10 @@ include/xmloff/numehelp.hxx:92
void XMLNumberFormatAttributesExportHelper::SetNumberFormatAttributes(class SvXMLExport &,const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool)
_Bool bExportTypeAttribute
1
+include/xmloff/ProgressBarHelper.hxx:47
+ void ProgressBarHelper::ProgressBarHelper(const class com::sun::star::uno::Reference<class com::sun::star::task::XStatusIndicator> &,const _Bool)
+ const _Bool bStrict
+ 1
include/xmloff/SchXMLImportHelper.hxx:129
class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> SchXMLImportHelper::GetNewDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,const class rtl::OUString &,_Bool)
int nCoordinateSystemIndex
@@ -1898,14 +1970,30 @@ include/xmloff/txtparae.hxx:222
void XMLTextParagraphExport::exportText(const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextSection> &,_Bool,_Bool,_Bool)
_Bool bExportParagraph
1
+include/xmloff/XMLCharContext.hxx:45
+ void XMLCharContext::XMLCharContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,short)
+ short nControl
+ 1
include/xmloff/XMLEventExport.hxx:89
void XMLEventExport::Export(const class com::sun::star::uno::Reference<class com::sun::star::document::XEventsSupplier> &,_Bool)
_Bool bUseWhitespace
1
-include/xmloff/xmlnumi.hxx:79
+include/xmloff/xmlnumi.hxx:60
+ void SvxXMLListStyleContext::SvxXMLListStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,_Bool)
+ _Bool bOutl
+ 1
+include/xmloff/xmlnumi.hxx:83
void SvxXMLListStyleContext::SetDefaultStyle(const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexReplace> &,short,_Bool)
_Bool bOrdered
0
+include/xmloff/xmlstyle.hxx:94
+ void SvXMLStyleContext::SvXMLStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,unsigned short,_Bool)
+ _Bool bDefaultStyle
+ 0
+include/xmloff/xmlstyle.hxx:197
+ void SvXMLStylesContext::SvXMLStylesContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,_Bool)
+ _Bool bAutomatic
+ 0
l10ntools/inc/common.hxx:49
void writePoEntry(const class rtl::OString &,class PoOfstream &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const enum PoEntry::TYPE)
const enum PoEntry::TYPE eType
@@ -1918,7 +2006,15 @@ libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:52
void gtv_main_toolbar_doc_loaded(struct GtvMainToolbar *,LibreOfficeKitDocumentType,_Bool)
_Bool bEditMode
1
-libreofficekit/qa/tilebench/tilebench.cxx:139
+libreofficekit/qa/tilebench/tilebench.cxx:71
+ void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
+ const int nOffY
+ 0
+libreofficekit/qa/tilebench/tilebench.cxx:71
+ void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
+ const int nOffX
+ 0
+libreofficekit/qa/tilebench/tilebench.cxx:147
void testTile(class lok::Document *,int,int,_Bool)
_Bool dump
1
@@ -1944,11 +2040,11 @@ lotuswordpro/inc/xfilter/xfframestyle.hxx:128
1
lotuswordpro/inc/xfilter/xfframestyle.hxx:128
void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
- _Bool content
+ _Bool pos
1
lotuswordpro/inc/xfilter/xfframestyle.hxx:128
void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
- _Bool pos
+ _Bool content
1
lotuswordpro/inc/xfilter/xfindex.hxx:101
void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
@@ -1974,7 +2070,7 @@ lotuswordpro/source/filter/clone.hxx:26
char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *)
test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *
0
-lotuswordpro/source/filter/lwpnumericfmt.hxx:115
+lotuswordpro/source/filter/lwpnumericfmt.hxx:111
void LwpCurrencyInfo::LwpCurrencyInfo(const class rtl::OUString &,_Bool,_Bool)
_Bool bShowSpace_
1
@@ -1994,7 +2090,7 @@ oox/inc/drawingml/textspacing.hxx:44
void oox::drawingml::TextSpacing::TextSpacing(int)
int nPoints
0
-oox/source/drawingml/lineproperties.cxx:48
+oox/source/drawingml/lineproperties.cxx:47
void lclSetDashData(struct com::sun::star::drawing::LineDash &,short,int,short,int,int)
short nDots
1
@@ -2002,47 +2098,47 @@ oox/source/export/ColorPropertySet.hxx:42
void oox::drawingml::ColorPropertySet::ColorPropertySet(class Color,_Bool)
_Bool bFillColor
1
-oox/source/ppt/timenodelistcontext.cxx:103
- void oox::ppt::AnimColor::AnimColor(short,int,int,int)
+oox/source/ppt/timenodelistcontext.cxx:105
+ void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
short cs
0
-oox/source/ppt/timenodelistcontext.cxx:103
- void oox::ppt::AnimColor::AnimColor(short,int,int,int)
- int o
- 0
-oox/source/ppt/timenodelistcontext.cxx:103
- void oox::ppt::AnimColor::AnimColor(short,int,int,int)
+oox/source/ppt/timenodelistcontext.cxx:105
+ void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
int t
0
-oox/source/ppt/timenodelistcontext.cxx:103
- void oox::ppt::AnimColor::AnimColor(short,int,int,int)
+oox/source/ppt/timenodelistcontext.cxx:105
+ void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
+ int o
+ 0
+oox/source/ppt/timenodelistcontext.cxx:105
+ void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
int th
0
-oox/source/vml/vmlformatting.cxx:543
+oox/source/vml/vmlformatting.cxx:542
long lclGetEmu(const class oox::GraphicHelper &,const class oox::OptValue<class rtl::OUString> &,long)
long nDefValue
1
-oox/source/vml/vmlshapecontext.cxx:129
+oox/source/vml/vmlshapecontext.cxx:128
_Bool lclDecodeVmlxBool(const class rtl::OUString &,_Bool)
_Bool bDefaultForEmpty
1
-opencl/source/opencl_device.cxx:114
+opencl/source/opencl_device.cxx:115
double random(double,double)
double min
0
-opencl/source/openclwrapper.cxx:529
+opencl/source/openclwrapper.cxx:528
_Bool initOpenCLRunEnv(int)
int argc
0
-pyuno/inc/pyuno.hxx:92
+pyuno/inc/pyuno.hxx:91
void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire)
enum __sal_NoAcquire
0
-pyuno/inc/pyuno.hxx:94
+pyuno/inc/pyuno.hxx:93
void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull)
enum __sal_NoAcquire
0
-pyuno/inc/pyuno.hxx:94
+pyuno/inc/pyuno.hxx:93
void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull)
enum pyuno::NotNull
0
@@ -2050,15 +2146,23 @@ pyuno/source/module/pyuno_impl.hxx:165
void log(struct pyuno::RuntimeCargo *,int,const class rtl::OUString &)
int level
1
+reportdesign/inc/RptModel.hxx:57
+ void rptui::OReportModel::OReportModel(class reportdesign::OReportDefinition *)
+ class reportdesign::OReportDefinition * _pReportDefinition
+ 0
reportdesign/source/core/inc/Tools.hxx:48
void throwIllegallArgumentException(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
short ArgumentPosition_
1
reportdesign/source/filter/xml/xmlFixedContent.cxx:52
- void rptxml::OXMLCharContent::OXMLCharContent(class SvXMLImport &,class rptxml::OXMLFixedContent *,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,short)
+ void rptxml::(anonymous namespace)::OXMLCharContent::OXMLCharContent(class SvXMLImport &,class rptxml::OXMLFixedContent *,short)
short nControl
1
-reportdesign/source/filter/xml/xmlStyleImport.hxx:113
+reportdesign/source/filter/xml/xmlFormattedField.hxx:34
+ void rptxml::OXMLFormattedField::OXMLFormattedField(class rptxml::ORptFilter &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,const class com::sun::star::uno::Reference<class com::sun::star::report::XFormattedField> &,class rptxml::OXMLTable *,_Bool)
+ _Bool _bPageCount
+ 0
+reportdesign/source/filter/xml/xmlStyleImport.hxx:111
void rptxml::OReportStylesContext::OReportStylesContext(class rptxml::ORptFilter &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const _Bool)
unsigned short nPrfx
0
@@ -2082,11 +2186,11 @@ reportdesign/source/ui/report/SectionWindow.cxx:365
void lcl_setOrigin(class vcl::Window &,long,long)
long _nY
0
-sal/osl/unx/file.cxx:97
- void FileHandle_Impl::FileHandle_Impl(int,enum FileHandle_Impl::Kind,const char *)
- enum FileHandle_Impl::Kind kind
+sal/osl/unx/file.cxx:111
+ void (anonymous namespace)::FileHandle_Impl::FileHandle_Impl(int,enum (anonymous namespace)::FileHandle_Impl::Kind,const char *)
+ enum (anonymous namespace)::FileHandle_Impl::Kind kind
1
-sal/qa/osl/file/osl_File.cxx:420
+sal/qa/osl/file/osl_File.cxx:426
void osl_FileBase::getAbsoluteFileURL::check_getAbsoluteFileURL(const class rtl::OUString &,const class rtl::OString &,enum osl::FileBase::RC,const class rtl::OUString &)
enum osl::FileBase::RC _nAssumeError
0
@@ -2094,19 +2198,23 @@ sal/qa/osl/pipe/osl_Pipe.cxx:738
void thread_sleep(unsigned int)
unsigned int _nSec
1
-sal/qa/osl/process/osl_Thread.cxx:154
- void ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?)
+sal/qa/osl/process/osl_Thread.cxx:160
+ void (anonymous namespace)::ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?)
type-parameter-?-? n
0
-sc/inc/address.hxx:325
+sal/qa/rtl/random/rtl_random.cxx:172
+ void rtl_random::(anonymous namespace)::Statistics::addValue(unsigned char,int)
+ int _nValue
+ 1
+sc/inc/address.hxx:334
void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const
const class ScDocument * pDocument
0
-sc/inc/address.hxx:498
+sc/inc/address.hxx:507
void ScRange::ScRange(enum ScAddress::Uninitialized)
enum ScAddress::Uninitialized eUninitialized
0
-sc/inc/address.hxx:501
+sc/inc/address.hxx:510
void ScRange::ScRange(enum ScAddress::InitializeInvalid)
enum ScAddress::InitializeInvalid eInvalid
0
@@ -2142,39 +2250,39 @@ sc/inc/chgtrack.hxx:711
void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const
int nDy
0
-sc/inc/column.hxx:220
- _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const
- _Bool bConsiderCellDrawObjects
- 0
-sc/inc/column.hxx:220
+sc/inc/column.hxx:221
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const
_Bool bConsiderCellNotes
0
-sc/inc/column.hxx:222
- _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool)
+sc/inc/column.hxx:221
+ _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const
_Bool bConsiderCellDrawObjects
0
-sc/inc/column.hxx:222
+sc/inc/column.hxx:223
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool)
_Bool bConsiderCellNotes
0
-sc/inc/column.hxx:249
+sc/inc/column.hxx:223
+ _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool)
+ _Bool bConsiderCellDrawObjects
+ 0
+sc/inc/column.hxx:250
void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const
int nStartRow
0
-sc/inc/column.hxx:336
+sc/inc/column.hxx:337
class ScFormulaCell * ScColumn::SetFormulaCell(int,class ScFormulaCell *,enum sc::StartListeningType,_Bool)
_Bool bInheritNumFormatIfNeeded
1
-sc/inc/column.hxx:366
+sc/inc/column.hxx:367
void ScColumn::GetString(struct sc::ColumnBlockConstPosition &,int,class rtl::OUString &,const struct ScInterpreterContext *) const
const struct ScInterpreterContext * pContext
0
-sc/inc/column.hxx:668
+sc/inc/column.hxx:669
void ScColumn::DetachFormulaCells(class sc::EndListeningContext &,int,int,class std::__debug::vector<int, class std::allocator<int> > *)
class std::__debug::vector<int, class std::allocator<int> > * pNewSharedRows
0
-sc/inc/column.hxx:724
+sc/inc/column.hxx:725
void ScColumn::AttachNewFormulaCell(const class mdds::detail::mtv::iterator_base<struct mdds::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, class svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, class EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, class ScFormulaCell> >, class sc::CellStoreEvent>::iterator_trait, struct mdds::detail::mtv::private_data_forward_update<struct mdds::detail::mtv::iterator_value_node<unsigned long, struct mdds::mtv::base_element_block> > > &,int,class ScFormulaCell &,const class std::__debug::vector<int, class std::allocator<int> > &,_Bool,enum sc::StartListeningType)
_Bool bJoin
1
@@ -2186,39 +2294,43 @@ sc/inc/columnspanset.hxx:84
void sc::ColumnSpanSet::ColumnAction::executeSum(int,int,_Bool,double &)
_Bool
1
+sc/inc/columnspanset.hxx:87
+ void sc::ColumnSpanSet::ColumnSpanSet(_Bool)
+ _Bool bInit
+ 0
sc/inc/columnspanset.hxx:92
- void sc::ColumnSpanSet::set(short,short,int,_Bool)
+ void sc::ColumnSpanSet::set(const class ScDocument &,short,short,int,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:94
- void sc::ColumnSpanSet::set(const class ScRange &,_Bool)
+ void sc::ColumnSpanSet::set(const class ScDocument &,const class ScRange &,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:96
- void sc::ColumnSpanSet::set(short,short,const class sc::SingleColumnSpanSet &,_Bool)
+ void sc::ColumnSpanSet::set(const class ScDocument &,short,short,const class sc::SingleColumnSpanSet &,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:102
void sc::ColumnSpanSet::scan(const class ScDocument &,short,short,int,short,int,_Bool)
_Bool bVal
1
-sc/inc/compiler.hxx:350
+sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
- _Bool bMatrixFlag
+ const struct ScInterpreterContext * pContext
0
-sc/inc/compiler.hxx:350
+sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
- const struct ScInterpreterContext * pContext
+ _Bool bMatrixFlag
0
-sc/inc/compiler.hxx:350
+sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
_Bool bComputeII
0
-sc/inc/compiler.hxx:356
+sc/inc/compiler.hxx:364
void ScCompiler::ScCompiler(class ScDocument *,const class ScAddress &,enum formula::FormulaGrammar::Grammar,_Bool,_Bool,const struct ScInterpreterContext *)
const struct ScInterpreterContext * pContext
0
-sc/inc/compiler.hxx:386
+sc/inc/compiler.hxx:394
char16_t ScCompiler::GetNativeAddressSymbol(enum ScCompiler::Convention::SpecialSymbolType) const
enum ScCompiler::Convention::SpecialSymbolType eType
0
@@ -2234,123 +2346,127 @@ sc/inc/dapiuno.hxx:297
void ScFieldIdentifier::ScFieldIdentifier(const class rtl::OUString &,_Bool)
_Bool bDataLayout
1
... etc. - the rest is truncated
More information about the Libreoffice-commits
mailing list