summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-02-27 08:33:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-02-27 10:55:18 +0100
commitb623684c666ccf07b59a76fe58e10f34afbb41a4 (patch)
tree801b2a47c3fd055ed93a52fc721b9b653b0fb5c6
parentd55b26a093bdbced08985dbc7113190b52a8bc66 (diff)
loplugin:constantparam
Change-Id: I62a0b760e49e38a4565eebf272492159047dda5b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89613 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--chart2/source/controller/main/ObjectHierarchy.cxx16
-rw-r--r--chart2/source/controller/uitest/uiobject.cxx2
-rw-r--r--compilerplugins/clang/constantparam.bitmask.results2
-rw-r--r--compilerplugins/clang/constantparam.booleans.results612
-rw-r--r--compilerplugins/clang/constantparam.constructors.results124
-rw-r--r--compilerplugins/clang/constantparam.numbers.results352
-rw-r--r--include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx3
-rw-r--r--svx/source/dialog/framelinkarray.cxx1
-rw-r--r--svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx14
-rw-r--r--sw/source/core/layout/paintfrm.cxx2
-rw-r--r--xmloff/source/script/xmlbasicscript.cxx49
-rw-r--r--xmloff/source/script/xmlbasicscript.hxx11
-rw-r--r--xmloff/source/script/xmlscripti.cxx2
13 files changed, 589 insertions, 601 deletions
diff --git a/chart2/source/controller/main/ObjectHierarchy.cxx b/chart2/source/controller/main/ObjectHierarchy.cxx
index 3109161b3884..51339e0f4ca2 100644
--- a/chart2/source/controller/main/ObjectHierarchy.cxx
+++ b/chart2/source/controller/main/ObjectHierarchy.cxx
@@ -736,7 +736,7 @@ void ObjectKeyNavigation::setCurrentSelection( const ObjectIdentifier& rOID )
bool ObjectKeyNavigation::first()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aSiblings( aHierarchy.getSiblings( getCurrentSelection() ) );
bool bResult = !aSiblings.empty();
if( bResult )
@@ -748,7 +748,7 @@ bool ObjectKeyNavigation::first()
bool ObjectKeyNavigation::last()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aSiblings( aHierarchy.getSiblings( getCurrentSelection() ) );
bool bResult = !aSiblings.empty();
if( bResult )
@@ -760,7 +760,7 @@ bool ObjectKeyNavigation::last()
bool ObjectKeyNavigation::next()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aSiblings( aHierarchy.getSiblings( getCurrentSelection() ) );
bool bResult = !aSiblings.empty();
if( bResult )
@@ -780,7 +780,7 @@ bool ObjectKeyNavigation::next()
bool ObjectKeyNavigation::previous()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aSiblings( aHierarchy.getSiblings( getCurrentSelection()));
bool bResult = !aSiblings.empty();
if( bResult )
@@ -800,7 +800,7 @@ bool ObjectKeyNavigation::previous()
bool ObjectKeyNavigation::up()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
bool bResult = !ObjectHierarchy::isRootNode( getCurrentSelection());
if( bResult )
setCurrentSelection( aHierarchy.getParent( getCurrentSelection()));
@@ -809,7 +809,7 @@ bool ObjectKeyNavigation::up()
bool ObjectKeyNavigation::down()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
bool bResult = aHierarchy.hasChildren( getCurrentSelection());
if( bResult )
{
@@ -822,7 +822,7 @@ bool ObjectKeyNavigation::down()
bool ObjectKeyNavigation::veryFirst()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aChildren( aHierarchy.getTopLevelChildren());
bool bResult = !aChildren.empty();
if( bResult )
@@ -832,7 +832,7 @@ bool ObjectKeyNavigation::veryFirst()
bool ObjectKeyNavigation::veryLast()
{
- ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider, true/*StepDownInDiagram*/ );
+ ObjectHierarchy aHierarchy( m_xChartDocument, m_pExplicitValueProvider );
ObjectHierarchy::tChildContainer aChildren( aHierarchy.getTopLevelChildren());
bool bResult = !aChildren.empty();
if( bResult )
diff --git a/chart2/source/controller/uitest/uiobject.cxx b/chart2/source/controller/uitest/uiobject.cxx
index 0f3ec51b1bf8..e850573b97f2 100644
--- a/chart2/source/controller/uitest/uiobject.cxx
+++ b/chart2/source/controller/uitest/uiobject.cxx
@@ -176,7 +176,7 @@ std::set<OUString> ChartWindowUIObject::get_children() const
css::uno::Reference<css::uno::XInterface> xChartView = pController->getChartView();
chart::ExplicitValueProvider* pValueProvider = comphelper::getUnoTunnelImplementation<chart::ExplicitValueProvider>( xChartView );
- chart::ObjectHierarchy aHierarchy(xChartDoc, pValueProvider, true);
+ chart::ObjectHierarchy aHierarchy(xChartDoc, pValueProvider);
chart::ObjectIdentifier aIdentifier = chart::ObjectHierarchy::getRootNodeOID();
aChildren.insert(aIdentifier.getObjectCID());
diff --git a/compilerplugins/clang/constantparam.bitmask.results b/compilerplugins/clang/constantparam.bitmask.results
index f12ee3564820..9b4c4b09b169 100644
--- a/compilerplugins/clang/constantparam.bitmask.results
+++ b/compilerplugins/clang/constantparam.bitmask.results
@@ -7,7 +7,7 @@ codemaker/source/javamaker/classfile.hxx:168
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
+include/basegfx/polygon/b2dpolygontools.hxx:146
enum CutFlagValue findCut(const class basegfx::B2DPoint &,const class basegfx::B2DVector &,const class basegfx::B2DPoint &,const class basegfx::B2DVector &,enum CutFlagValue,double *,double *)
enum CutFlagValue aCutFlags setBits=0x1
include/framework/framelistanalyzer.hxx:184
diff --git a/compilerplugins/clang/constantparam.booleans.results b/compilerplugins/clang/constantparam.booleans.results
index 6e4c4eafc193..030005c1ada4 100644
--- a/compilerplugins/clang/constantparam.booleans.results
+++ b/compilerplugins/clang/constantparam.booleans.results
@@ -6,7 +6,7 @@ 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:102
+basctl/source/basicide/moduldlg.hxx:103
void basctl::LibDialog::EnableReference(_Bool)
_Bool b
0
@@ -30,6 +30,30 @@ basic/source/runtime/iosys.cxx:62
void (anonymous namespace)::SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &)
class weld::Window *
0
+canvas/inc/parametricpolypolygon.hxx:138
+ 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
+canvas/inc/spriteredrawmanager.hxx:108
+ void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(const class rtl::Reference<class canvas::Sprite> &,const class basegfx::B2DRange &,_Bool,_Bool)
+ _Bool bNeedsUpdate
+ 1
+canvas/inc/verifyinput.hxx:147
+ void verifyInput(const struct com::sun::star::geometry::RealBezierSegment2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
+ short nArgPos
+ 0
+canvas/inc/verifyinput.hxx:279
+ void verifyInput(const struct com::sun::star::rendering::IntegerBitmapLayout &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
+ short nArgPos
+ 0
+canvas/inc/verifyinput.hxx:520
+ void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
+ type-parameter-?-? bound
+ 1
+canvas/inc/verifyinput.hxx:520
+ void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
+ _Bool bLowerBound
+ 1
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
@@ -46,7 +70,7 @@ chart2/qa/extras/chart2dump/chart2dump.cxx:97
void Chart2DumpTest::Chart2DumpTest(_Bool)
_Bool bDumpMode
0
-chart2/qa/extras/chart2export.cxx:379
+chart2/qa/extras/chart2export.cxx:388
void checkCommonTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,double,double,_Bool,double,_Bool,_Bool)
_Bool aExpectedShowEquation
1
@@ -110,22 +134,22 @@ 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
+chart2/source/controller/inc/ObjectHierarchy.hxx:49
+ void chart::ObjectHierarchy::ObjectHierarchy(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,class chart::ExplicitValueProvider *,_Bool)
+ _Bool bOrderingForElementSelector
1
chart2/source/controller/inc/ViewElementListProvider.hxx:51
class Graphic chart::ViewElementListProvider::GetSymbolGraphic(int,const class SfxItemSet *) const
int nStandardSymbol
0
+chart2/source/controller/main/ObjectHierarchy.cxx:129
+ void chart::impl::ImplObjectHierarchy::ImplObjectHierarchy(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,class chart::ExplicitValueProvider *,_Bool,_Bool)
+ _Bool bFlattenDiagram
+ 0
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
@@ -162,7 +186,7 @@ chart2/source/view/inc/Stripe.hxx:53
void chart::Stripe::InvertNormal(_Bool)
_Bool bInvertNormal
1
-chart2/source/view/main/ShapeFactory.cxx:702
+chart2/source/view/main/ShapeFactory.cxx:703
void appendAndCloseBezierCoords(struct com::sun::star::drawing::PolyPolygonBezierCoords &,const struct com::sun::star::drawing::PolyPolygonBezierCoords &,_Bool)
_Bool bAppendInverse
1
@@ -178,7 +202,31 @@ 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:415
+connectivity/inc/sdbcx/VIndex.hxx:64
+ void connectivity::sdbcx::OIndex::OIndex(_Bool)
+ _Bool _bCase
+ 1
+connectivity/inc/sdbcx/VIndex.hxx:65
+ void connectivity::sdbcx::OIndex::OIndex(const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool,_Bool,_Bool)
+ _Bool _bCase
+ 1
+connectivity/inc/sdbcx/VKey.hxx:79
+ void connectivity::sdbcx::OKey::OKey(_Bool)
+ _Bool _bCase
+ 1
+connectivity/inc/sdbcx/VKey.hxx:80
+ void connectivity::sdbcx::OKey::OKey(const class rtl::OUString &,const class std::shared_ptr<struct connectivity::sdbcx::KeyProperties> &,_Bool)
+ _Bool _bCase
+ 1
+connectivity/inc/sdbcx/VUser.hxx:63
+ void connectivity::sdbcx::OUser::OUser(_Bool)
+ _Bool _bCase
+ 1
+connectivity/inc/sdbcx/VUser.hxx:64
+ void connectivity::sdbcx::OUser::OUser(const class rtl::OUString &,_Bool)
+ _Bool _bCase
+ 1
+connectivity/source/drivers/postgresql/pq_connection.cxx:414
void pq_sdbc_driver::(anonymous namespace)::cstr_vector::push_back(const char *,enum __sal_NoAcquire)
enum __sal_NoAcquire
0
@@ -222,15 +270,15 @@ cui/source/inc/acccfg.hxx:43
void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &)
int nListPos
0
-cui/source/inc/cfg.hxx:340
+cui/source/inc/cfg.hxx:341
void SvxMenuEntriesListBox::set_toggle(int,enum TriState,int)
int col
0
-cui/source/inc/cfg.hxx:458
+cui/source/inc/cfg.hxx:459
void SvxConfigPage::InsertEntryIntoUI(class SvxConfigEntry *,class weld::TreeView &,class weld::TreeIter &,int)
int nStartCol
0
-cui/source/inc/cfg.hxx:462
+cui/source/inc/cfg.hxx:463
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
@@ -242,10 +290,6 @@ 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/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
@@ -310,7 +354,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:127
+dbaccess/source/ui/inc/FieldDescControl.hxx:129
void dbaui::OFieldDescControl::InitializeControl(class dbaui::OPropListBoxCtrl *,const class rtl::OString &,_Bool)
_Bool _bAddChangeHandler
1
@@ -346,7 +390,7 @@ 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:6004
+desktop/source/lib/init.cxx:6049
struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *)
const char * user_profile_url
0
@@ -399,7 +443,7 @@ extensions/source/propctrlr/usercontrol.hxx:92
_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)
+ void pcr::OFileUrlControl::OFileUrlControl(class std::unique_ptr<class SvtURLBox, struct std::default_delete<class SvtURLBox> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
_Bool bReadOnly
0
extensions/source/scanner/grid.cxx:130
@@ -490,15 +534,15 @@ filter/source/svg/svgwriter.hxx:253
void SVGTextWriter::startTextPosition(_Bool,_Bool)
_Bool bExportY
1
-forms/source/component/DatabaseForm.hxx:236
+forms/source/component/DatabaseForm.hxx:233
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:148
+forms/source/component/GroupManager.hxx:146
const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> & frm::OGroup::GetObject(unsigned short) const
unsigned short nP
0
-forms/source/inc/featuredispatcher.hxx:50
+forms/source/inc/featuredispatcher.hxx:51
void frm::IFeatureDispatcher::dispatchWithArgument(short,const char *,const class com::sun::star::uno::Any &) const
short _nFeatureId
1
@@ -550,31 +594,27 @@ 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
1
-include/basegfx/polygon/b2dpolygontools.hxx:90
+include/basegfx/polygon/b2dpolygontools.hxx:92
_Bool isInside(const class basegfx::B2DPolygon &,const class basegfx::B2DPolygon &,_Bool)
_Bool bWithBorder
1
-include/basegfx/polygon/b2dpolygontools.hxx:278
+include/basegfx/polygon/b2dpolygontools.hxx:300
class basegfx::B2DPolygon createPolygonFromEllipse(const class basegfx::B2DPoint &,double,double,unsigned int)
unsigned int nStartQuadrant
0
-include/basegfx/polygon/b2dpolygontools.hxx:346
+include/basegfx/polygon/b2dpolygontools.hxx:368
enum basegfx::B2VectorOrientation getOrientationForIndex(const class basegfx::B2DPolygon &,unsigned int)
unsigned int nIndex
0
-include/basegfx/polygon/b2dpolygontools.hxx:353
+include/basegfx/polygon/b2dpolygontools.hxx:375
_Bool isPointOnPolygon(const class basegfx::B2DPolygon &,const class basegfx::B2DPoint &,_Bool)
_Bool bWithPoints
1
-include/basegfx/polygon/b2dpolygontools.hxx:356
+include/basegfx/polygon/b2dpolygontools.hxx:378
_Bool isPointInTriangle(const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,_Bool)
_Bool bWithBorder
1
@@ -602,6 +642,10 @@ include/basegfx/polygon/b2dpolypolygon.hxx:138
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
###4
0
+include/basegfx/polygon/b2dpolypolygon.hxx:138
+ shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
+ ###5
+ 0
include/basegfx/polygon/b3dpolygon.hxx:72
void basegfx::B3DPolygon::append(const class basegfx::B3DPoint &,unsigned int)
unsigned int nCount
@@ -618,11 +662,11 @@ include/basegfx/polygon/b3dpolygon.hxx:99
void basegfx::B3DPolygon::remove(unsigned int,unsigned int)
unsigned int nCount
1
-include/basegfx/polygon/b3dpolygontools.hxx:95
+include/basegfx/polygon/b3dpolygontools.hxx:103
_Bool isInside(const class basegfx::B3DPolygon &,const class basegfx::B3DPoint &,_Bool)
_Bool bWithBorder
0
-include/basegfx/polygon/b3dpolygontools.hxx:98
+include/basegfx/polygon/b3dpolygontools.hxx:106
_Bool isPointOnLine(const class basegfx::B3DPoint &,const class basegfx::B3DPoint &,const class basegfx::B3DPoint &,_Bool)
_Bool bWithPoints
1
@@ -630,10 +674,6 @@ include/basegfx/polygon/b3dpolypolygon.hxx:83
void basegfx::B3DPolyPolygon::append(const class basegfx::B3DPolygon &,unsigned int)
unsigned int nCount
1
-include/basegfx/polygon/b3dpolypolygon.hxx:89
- void basegfx::B3DPolyPolygon::remove(unsigned int,unsigned int)
- unsigned int nCount
- 1
include/basegfx/range/b2ibox.hxx:71
void basegfx::B2IBox::B2IBox(int,int,int,int)
int x1
@@ -662,30 +702,6 @@ include/basic/sbxobj.hxx:72
void SbxObject::Remove(const class rtl::OUString &,enum SbxClassType)
enum SbxClassType
1
-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:109
- void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(const class rtl::Reference<class canvas::Sprite> &,const class basegfx::B2DRange &,_Bool,_Bool)
- _Bool bNeedsUpdate
- 1
-include/canvas/verifyinput.hxx:148
- void verifyInput(const struct com::sun::star::geometry::RealBezierSegment2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
- short nArgPos
- 0
-include/canvas/verifyinput.hxx:280
- void verifyInput(const struct com::sun::star::rendering::IntegerBitmapLayout &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
- short nArgPos
- 0
-include/canvas/verifyinput.hxx:521
- void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
- type-parameter-?-? bound
- 1
-include/canvas/verifyinput.hxx:521
- void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
- _Bool bLowerBound
- 1
include/comphelper/configurationhelper.hxx:211
class com::sun::star::uno::Any comphelper::ConfigurationHelper::readDirectKey(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum comphelper::EConfigurationModes)
enum comphelper::EConfigurationModes eMode
@@ -710,10 +726,6 @@ 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
@@ -750,31 +762,7 @@ include/connectivity/FValue.hxx:469
void connectivity::TSetBound::TSetBound(_Bool)
_Bool _bBound
0
-include/connectivity/sdbcx/VIndex.hxx:65
- void connectivity::sdbcx::OIndex::OIndex(_Bool)
- _Bool _bCase
- 1
-include/connectivity/sdbcx/VIndex.hxx:66
- void connectivity::sdbcx::OIndex::OIndex(const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool,_Bool,_Bool)
- _Bool _bCase
- 1
-include/connectivity/sdbcx/VKey.hxx:80
- void connectivity::sdbcx::OKey::OKey(_Bool)
- _Bool _bCase
- 1
-include/connectivity/sdbcx/VKey.hxx:81
- void connectivity::sdbcx::OKey::OKey(const class rtl::OUString &,const class std::shared_ptr<struct connectivity::sdbcx::KeyProperties> &,_Bool)
- _Bool _bCase
- 1
-include/connectivity/sdbcx/VUser.hxx:64
- void connectivity::sdbcx::OUser::OUser(_Bool)
- _Bool _bCase
- 1
-include/connectivity/sdbcx/VUser.hxx:65
- void connectivity::sdbcx::OUser::OUser(const class rtl::OUString &,_Bool)
- _Bool _bCase
- 1
-include/connectivity/sqlscan.hxx:51
+include/connectivity/sqlscan.hxx:50
void connectivity::OSQLScanner::prepareScan(const class rtl::OUString &,const class connectivity::IParseContext *,_Bool)
_Bool bInternational
1
@@ -1018,7 +1006,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:76
+include/sfx2/lokhelper.hxx:82
void SfxLokHelper::notifyDocumentSizeChangedAllViews(class vcl::ITiledRenderable *,_Bool)
_Bool bInvalidateAll
1
@@ -1142,7 +1130,7 @@ include/svl/urihelper.hxx:148
class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::EncodeMechanism eEncodeMechanism
1
-include/svl/zforlist.hxx:883
+include/svl/zforlist.hxx:893
const class NfKeywordTable & SvNumberFormatter::GetKeywords(unsigned int)
unsigned int nKey
0
@@ -1166,16 +1154,8 @@ include/svtools/HtmlWriter.hxx:38
void HtmlWriter::prettyPrint(_Bool)
_Bool b
0
-include/svtools/inettbc.hxx:56
- void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool)
- enum INetProtocol eSmart
- 0
-include/svtools/inettbc.hxx:56
- void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool)
- _Bool bSetDefaultHelpID
- 1
-include/svtools/inettbc.hxx:114
- void URLBox::select_entry_region(int,int)
+include/svtools/inettbc.hxx:81
+ void SvtURLBox::select_entry_region(int,int)
int nStartPos
0
include/svtools/ruler.hxx:733
@@ -1186,23 +1166,19 @@ include/svtools/stringtransfer.hxx:65
void svt::OStringTransfer::StartStringDrag(const class rtl::OUString &,class vcl::Window *,signed char)
signed char _nDragSourceActions
1
-include/svtools/unitconv.hxx:39
- void SetFieldUnit(class MetricField &,enum FieldUnit,_Bool)
- _Bool bAll
- 0
-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:354
+include/svtools/valueset.hxx:291
+ void ValueSet::InsertItem(unsigned short,const class Image &,const class rtl::OUString &,unsigned long)
+ unsigned short nItemId
+ 1
+include/svtools/valueset.hxx:337
class Size ValueSet::CalcWindowSizePixel(const class Size &,unsigned short,unsigned short) const
unsigned short nCalcLines
0
-include/svtools/valueset.hxx:496
+include/svtools/valueset.hxx:479
void SvtValueSet::EnableFullItemMode(_Bool)
_Bool bFullMode
0
-include/svtools/valueset.hxx:534
+include/svtools/valueset.hxx:517
void SvtValueSet::SetItemColor(unsigned short,const class Color &)
unsigned short nItemId
1
@@ -1226,7 +1202,7 @@ include/svx/ctredlin.hxx:233
void SvxTPFilter::CheckAction(_Bool)
_Bool bFlag
0
-include/svx/dlgctrl.hxx:138
+include/svx/dlgctrl.hxx:137
void SvxRectCtl::DoCompletelyDisable(_Bool)
_Bool bNew
1
@@ -1242,23 +1218,23 @@ include/svx/fmview.hxx:88
void FmFormView::createControlLabelPair(const class OutputDevice *,int,int,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormats> &,unsigned short,enum SdrInventor,unsigned short,class SdrModel &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &)
int _nYOffsetMM
0
-include/svx/framelink.hxx:146
- void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
- double nD
- 0
-include/svx/framelink.hxx:146
+include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
enum SvxBorderLineStyle nType
0
-include/svx/framelink.hxx:146
+include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
double nS
0
+include/svx/framelink.hxx:148
+ void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
+ double nD
+ 0
include/svx/frmsel.hxx:144
void svx::FrameSelector::SelectAllBorders(_Bool)
_Bool bSelect
0
-include/svx/gridctrl.hxx:391
+include/svx/gridctrl.hxx:393
void DbGridControl::RemoveRows(_Bool)
_Bool bNewCursor
0
@@ -1294,37 +1270,33 @@ include/svx/postattr.hxx:93
void SvxPostItIdItem::SvxPostItIdItem(unsigned short)
unsigned short nWhich
0
-include/svx/relfld.hxx:50
- void RelativeField::EnableRelativeMode(unsigned short,unsigned short)
+include/svx/relfld.hxx:43
+ void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
unsigned short nMin
0
-include/svx/relfld.hxx:58
- int RelativeField::get_min(enum FieldUnit) const
+include/svx/relfld.hxx:51
+ int SvxRelativeField::get_min(enum FieldUnit) const
enum FieldUnit eValueUnit
0
-include/svx/relfld.hxx:73
- void RelativeField::SetFieldUnit(enum FieldUnit,_Bool)
+include/svx/relfld.hxx:67
+ void SvxRelativeField::SetFieldUnit(enum FieldUnit,_Bool)
_Bool bAll
0
include/svx/rulritem.hxx:123
void SvxColumnDescription::SvxColumnDescription(long,long,_Bool)
_Bool bVis
1
-include/svx/sdginitm.hxx:36
- void SdrGrafInvertItem::SdrGrafInvertItem(_Bool)
- _Bool bInvert
- 0
include/svx/sdr/overlay/overlayobject.hxx:126
void sdr::overlay::OverlayObject::allowAntiAliase(_Bool)
_Bool bNew
0
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/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/svdhlpln.hxx:43
void SdrHelpLine::SdrHelpLine(enum SdrHelpLineKind)
@@ -1378,10 +1350,6 @@ include/svx/SvxPresetListBox.hxx:59
void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int)
unsigned int nStartIndex
1
-include/svx/sxcaitm.hxx:37
- void SdrCaptionAngleItem::SdrCaptionAngleItem(long)
- long nAngle
- 0
include/svx/sxenditm.hxx:60
void SdrEdgeNode1GlueDistItem::SdrEdgeNode1GlueDistItem(long)
long nVal
@@ -1422,10 +1390,6 @@ 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
- 0
include/svx/xtable.hxx:217
class rtl::Reference<class XPropertyList> XPropertyList::CreatePropertyListFromURL(enum XPropertyListType,const class rtl::OUString &)
enum XPropertyListType t
@@ -1478,7 +1442,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:662
+include/tools/stream.hxx:663
void SvMemoryStream::ObjectOwnsMemory(_Bool)
_Bool bOwn
1
@@ -1550,7 +1514,7 @@ 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
1
-include/unotools/mediadescriptor.hxx:257
+include/unotools/mediadescriptor.hxx:258
class com::sun::star::uno::Sequence<struct com::sun::star::beans::NamedValue> utl::MediaDescriptor::requestAndVerifyDocPassword(class comphelper::IDocPasswordVerifier &,enum comphelper::DocPasswordRequestType,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > *)
enum comphelper::DocPasswordRequestType eRequestType
1
@@ -1630,19 +1594,19 @@ include/vcl/field.hxx:82
void FormatterBase::EnableEmptyFieldValue(_Bool)
_Bool bEnable
1
-include/vcl/field.hxx:223
- _Bool MetricFormatter::TextToValue(const class rtl::OUString &,double &,long,unsigned short,const class LocaleDataWrapper &,enum FieldUnit)
+include/vcl/fieldvalues.hxx:33
+ _Bool 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:467
- double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
+include/vcl/fieldvalues.hxx:53
+ double ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
unsigned short nDecDigits
0
-include/vcl/fmtfield.hxx:122
+include/vcl/fieldvalues.hxx:53
+ double ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
+ long nBaseValue
+ 0
+include/vcl/fmtfield.hxx:123
void FormattedField::EnableEmptyField(_Bool)
_Bool bEnable
1
@@ -1654,7 +1618,7 @@ include/vcl/image.hxx:48
void Image::Image(enum StockImage,const class rtl::OUString &,class Size)
enum StockImage
0
-include/vcl/lstbox.hxx:232
+include/vcl/lstbox.hxx:231
void ListBox::EnableUserDraw(_Bool)
_Bool bUserDraw
1
@@ -1666,27 +1630,27 @@ include/vcl/outdev.hxx:529
_Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const
enum OutDevSupportType
0
-include/vcl/outdev.hxx:1190
+include/vcl/outdev.hxx:1197
void OutputDevice::ImplDrawWaveTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
long nY
0
-include/vcl/outdev.hxx:1191
+include/vcl/outdev.hxx:1198
void OutputDevice::ImplDrawStraightTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
long nY
0
-include/vcl/outdev.hxx:1192
+include/vcl/outdev.hxx:1199
void OutputDevice::ImplDrawStrikeoutLine(long,long,long,long,long,enum FontStrikeout,class Color)
long nY
0
-include/vcl/outdev.hxx:1193
+include/vcl/outdev.hxx:1200
void OutputDevice::ImplDrawStrikeoutChar(long,long,long,long,long,enum FontStrikeout,class Color)
long nY
0
-include/vcl/outdev.hxx:1215
+include/vcl/outdev.hxx:1222
void OutputDevice::RefreshFontData(const _Bool)
const _Bool bNewFontLists
1
-include/vcl/outdev.hxx:1356
+include/vcl/outdev.hxx:1363
_Bool OutputDevice::GetTextIsRTL(const class rtl::OUString &,int,int) const
int nIndex
0
@@ -1706,11 +1670,11 @@ include/vcl/settings.hxx:675
void AllSettings::SetLanguageTag(const class rtl::OUString &,_Bool)
_Bool bCanonicalize
1
-include/vcl/splitwin.hxx:137
+include/vcl/splitwin.hxx:136
void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags)
unsigned short nIntoSetId
0
-include/vcl/splitwin.hxx:159
+include/vcl/splitwin.hxx:158
long SplitWindow::GetItemSize(unsigned short,enum SplitWindowItemFlags) const
enum SplitWindowItemFlags nBits
1
@@ -1738,11 +1702,15 @@ 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:420
+include/vcl/toolbox.hxx:365
+ void ToolBox::SetItemWindowNonInteractive(unsigned short,_Bool)
+ _Bool bNonInteractive
+ 1
+include/vcl/toolbox.hxx:423
class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign)
unsigned long nCalcLines
1
-include/vcl/toolbox.hxx:444
+include/vcl/toolbox.hxx:447
void ToolBox::EnableCustomize(_Bool)
_Bool bEnable
1
@@ -1754,7 +1722,11 @@ include/vcl/treelistbox.hxx:681
unsigned long SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool)
_Bool bSelect
0
-include/vcl/treelistbox.hxx:705
+include/vcl/treelistbox.hxx:691
+ void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
+ unsigned short nFirstTab
+ 0
+include/vcl/treelistbox.hxx:704
void SvTreeListBox::EnableAsyncDrag(_Bool)
_Bool b
1
@@ -1778,10 +1750,6 @@ include/vcl/vclptr.hxx:94
void VclPtr::VclPtr<reference_type>(const VclPtr<type-parameter-?-?> &,typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type)
typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type
0
-include/vcl/vclptr.hxx:127
- VclPtr<reference_type> VclPtr::Create(type-parameter-?-? &&...)
- ###6
- 1
include/vcl/vclptr.hxx:341
void ScopedVclPtr::ScopedVclPtr<reference_type>(const VclPtr<type-parameter-?-?> &,typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type)
typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type
@@ -1794,154 +1762,154 @@ include/vcl/vectorgraphicdata.hxx:84
void VectorGraphicData::VectorGraphicData(const class rtl::OUString &,enum VectorGraphicDataType)
enum VectorGraphicDataType eVectorDataType
0
-include/vcl/weld.hxx:300
+include/vcl/weld.hxx:307
void weld::ScrolledWindow::hadjustment_configure(int,int,int,int,int,int)
int step_increment
1
-include/vcl/weld.hxx:319
+include/vcl/weld.hxx:326
void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int)
int lower
0
-include/vcl/weld.hxx:331
+include/vcl/weld.hxx:338
void weld::ScrolledWindow::vadjustment_set_lower(int)
int upper
0
-include/vcl/weld.hxx:829
+include/vcl/weld.hxx:847
void weld::TreeView::set_text_emphasis(int,_Bool,int)
_Bool bOn
1
-include/vcl/weld.hxx:830
+include/vcl/weld.hxx:848
_Bool weld::TreeView::get_text_emphasis(int,int) const
int col
0
-include/vcl/weld.hxx:1082
+include/vcl/weld.hxx:1103
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:2042
+include/vcl/weld.hxx:2069
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:2045
+include/vcl/weld.hxx:2072
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:2046
+include/vcl/weld.hxx:2073
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:2049
+include/vcl/weld.hxx:2076
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:2052
+include/vcl/weld.hxx:2079
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:2053
+include/vcl/weld.hxx:2080
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:2056
+include/vcl/weld.hxx:2083
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:2057
+include/vcl/weld.hxx:2084
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:2058
+include/vcl/weld.hxx:2085
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:2062
+include/vcl/weld.hxx:2089
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:2065
+include/vcl/weld.hxx:2092
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:2070
+include/vcl/weld.hxx:2097
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:2073
+include/vcl/weld.hxx:2100
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:2076
+include/vcl/weld.hxx:2103
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:2083
+include/vcl/weld.hxx:2110
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:2085
+include/vcl/weld.hxx:2112
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:2087
+include/vcl/weld.hxx:2114
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:2089
+include/vcl/weld.hxx:2116
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:2093
+include/vcl/weld.hxx:2120
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
+include/vcl/weld.hxx:2122
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:2096
+include/vcl/weld.hxx:2123
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:2098
+include/vcl/weld.hxx:2125
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:2101
+include/vcl/weld.hxx:2128
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:2102
+include/vcl/weld.hxx:2129
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:2105
+include/vcl/weld.hxx:2132
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:2107
+include/vcl/weld.hxx:2134
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:2108
+include/vcl/weld.hxx:2135
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:2111
+include/vcl/weld.hxx:2138
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:2116
+include/vcl/weld.hxx:2143
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:2119
+include/vcl/weld.hxx:2146
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:2120
+include/vcl/weld.hxx:2147
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
+ 0
include/vcl/window.hxx:607
void vcl::Window::ImplSetMouseTransparent(_Bool)
_Bool bTransparent
@@ -1958,8 +1926,8 @@ 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
0
-include/xmloff/styleexp.hxx:102
- void XMLStyleExport::exportStyleFamily(const char *,const class rtl::OUString &,const class rtl::Reference<class SvXMLExportPropertyMapper> &,_Bool,unsigned short,const class rtl::OUString *)
+include/xmloff/styleexp.hxx:103
+ void XMLStyleExport::exportStyleFamily(const char *,const class rtl::OUString &,const class rtl::Reference<class SvXMLExportPropertyMapper> &,_Bool,enum XmlStyleFamily,const class rtl::OUString *)
const class rtl::OUString * pPrefix
0
include/xmloff/txtparae.hxx:222
@@ -1982,11 +1950,11 @@ 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)
+include/xmloff/xmlstyle.hxx:95
+ void SvXMLStyleContext::SvXMLStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,enum XmlStyleFamily,_Bool)
_Bool bDefaultStyle
0
-include/xmloff/xmlstyle.hxx:197
+include/xmloff/xmlstyle.hxx:198
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
@@ -2059,12 +2027,12 @@ lotuswordpro/source/filter/bento.hxx:205
class OpenStormBento::CBenObject * pCurrObject
0
lotuswordpro/source/filter/clone.hxx:26
- char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *)
- type-parameter-?-? *
+ 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/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> *
+ char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, & U::clone> *)
+ type-parameter-?-? *
0
lotuswordpro/source/filter/lwpnumericfmt.hxx:111
void LwpCurrencyInfo::LwpCurrencyInfo(const class rtl::OUString &,_Bool,_Bool)
@@ -2096,15 +2064,15 @@ oox/source/export/ColorPropertySet.hxx:42
1
oox/source/ppt/timenodelistcontext.cxx:105
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
- short cs
+ int o
0
oox/source/ppt/timenodelistcontext.cxx:105
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
- int t
+ short cs
0
oox/source/ppt/timenodelistcontext.cxx:105
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
- int o
+ int t
0
oox/source/ppt/timenodelistcontext.cxx:105
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
@@ -2284,29 +2252,29 @@ sc/inc/column.hxx:725
1
sc/inc/columnspanset.hxx:59
void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool)
+ _Bool bInit
+ 0
+sc/inc/columnspanset.hxx:59
+ void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool)
int nStart
0
-sc/inc/columnspanset.hxx:84
+sc/inc/columnspanset.hxx:83
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
+sc/inc/columnspanset.hxx:91
void sc::ColumnSpanSet::set(const class ScDocument &,short,short,int,_Bool)
_Bool bVal
1
-sc/inc/columnspanset.hxx:94
+sc/inc/columnspanset.hxx:93
void sc::ColumnSpanSet::set(const class ScDocument &,const class ScRange &,_Bool)
_Bool bVal
1
-sc/inc/columnspanset.hxx:96
+sc/inc/columnspanset.hxx:95
void sc::ColumnSpanSet::set(const class ScDocument &,short,short,const class sc::SingleColumnSpanSet &,_Bool)
_Bool bVal
1
-sc/inc/columnspanset.hxx:102
+sc/inc/columnspanset.hxx:101
void sc::ColumnSpanSet::scan(const class ScDocument &,short,short,int,short,int,_Bool)
_Bool bVal
1
@@ -2406,6 +2374,22 @@ sc/inc/document.hxx:1905
void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
int nStartRow
0
+sc/inc/document.hxx:1910
+ void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const
+ _Bool bPage
+ 0
+sc/inc/document.hxx:1910
+ void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const
+ _Bool bManual
+ 1
+sc/inc/document.hxx:1911
+ void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const
+ _Bool bManual
+ 1
+sc/inc/document.hxx:1911
+ void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const
+ _Bool bPage
+ 0
sc/inc/document.hxx:1914
void ScDocument::SetRowBreak(int,short,_Bool,_Bool)
_Bool bManual
@@ -2600,11 +2584,11 @@ sc/inc/scmatrix.hxx:330
0
sc/inc/scmatrix.hxx:369
unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
- unsigned long nCol1
+ unsigned long nCol2
0
sc/inc/scmatrix.hxx:369
unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
- unsigned long nCol2
+ unsigned long nCol1
0
sc/inc/scmatrix.hxx:370
unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const
@@ -2714,7 +2698,7 @@ sc/source/core/data/dociter.cxx:1273
void BoolResetter::BoolResetter(_Bool &,_Bool)
_Bool b
1
-sc/source/core/data/drwlayer.cxx:2007
+sc/source/core/data/drwlayer.cxx:2008
void DeleteFirstUserDataOfType(class SdrObject *,unsigned short)
unsigned short nId
1
@@ -2722,7 +2706,7 @@ sc/source/core/data/postit.cxx:410
void (anonymous namespace)::ScNoteCaptionCreator::ScNoteCaptionCreator(class ScDocument &,const class ScAddress &,class ScCaptionPtr &,_Bool)
_Bool bShown
1
-sc/source/core/opencl/formulagroupcl.cxx:1064
+sc/source/core/opencl/formulagroupcl.cxx:1071
class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const
_Bool nested
0
@@ -3054,14 +3038,6 @@ sc/source/ui/inc/docfunc.hxx:120
void ScDocFunc::SetNoteText(const class ScAddress &,const class rtl::OUString &,_Bool)
_Bool bApi
0
-sc/source/ui/inc/docfunc.hxx:122
- class ScPostIt * ScDocFunc::ImportNote(const class ScAddress &,const class rtl::OUString &,const class rtl::OUString *,const class rtl::OUString *)
- const class rtl::OUString * pAuthor
- 0
-sc/source/ui/inc/docfunc.hxx:122
- class ScPostIt * ScDocFunc::ImportNote(const class ScAddress &,const class rtl::OUString &,const class rtl::OUString *,const class rtl::OUString *)
- const class rtl::OUString * pDate
- 0
sc/source/ui/inc/docfunc.hxx:143
_Bool ScDocFunc::SetTabBgColor(class std::__debug::vector<struct ScUndoTabColorInfo, class std::allocator<struct ScUndoTabColorInfo> > &,_Bool)
_Bool bApi
@@ -3118,26 +3094,26 @@ sc/source/ui/inc/TableFillingAndNavigationTools.hxx:69
void AddressWalker::push(short,int,short)
short aRelativeTab
0
-sc/source/ui/inc/tabview.hxx:388
+sc/source/ui/inc/tabview.hxx:379
void ScTabView::ClickCursor(short,int,_Bool)
_Bool bControl
0
-sc/source/ui/inc/tabview.hxx:429
+sc/source/ui/inc/tabview.hxx:420
void ScTabView::MoveCursorAbs(short,int,enum ScFollowMode,_Bool,_Bool,_Bool,_Bool)
_Bool bControl
0
-sc/source/ui/inc/tabview.hxx:440
- void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
- short nMovX
- 0
-sc/source/ui/inc/tabview.hxx:440
+sc/source/ui/inc/tabview.hxx:431
void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
_Bool bShift
0
-sc/source/ui/inc/tabview.hxx:440
+sc/source/ui/inc/tabview.hxx:431
void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
enum ScFollowMode eMode
1
+sc/source/ui/inc/tabview.hxx:431
+ void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
+ short nMovX
+ 0
sc/source/ui/inc/undoblk.hxx:323
void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *)
const class SvxBoxInfoItem * pNewInner
@@ -3162,15 +3138,15 @@ sc/source/ui/inc/viewdata.hxx:146
void ScPositionHelper::invalidateByPosition(long)
long nPos
0
-sc/source/ui/inc/viewdata.hxx:599
+sc/source/ui/inc/viewdata.hxx:604
class Point ScViewData::GetScrPos(short,int,enum ScHSplitPos) const
int nWhereY
0
-sc/source/ui/inc/viewdata.hxx:600
+sc/source/ui/inc/viewdata.hxx:605
class Point ScViewData::GetScrPos(short,int,enum ScVSplitPos) const
short nWhereX
0
-sc/source/ui/inc/viewdata.hxx:663
+sc/source/ui/inc/viewdata.hxx:668
void ScViewData::AddPixelsWhileBackward(long &,long,int &,int,double,const class ScDocument *,short)
int nStartRow
0
@@ -3470,22 +3446,26 @@ svtools/inc/svmedit2.hxx:36
void ExtMultiLineEdit::SetAttrib(const class TextAttrib &,unsigned int,int,int)
int nStart
0
-svtools/source/control/valueimp.hxx:348
- void ValueItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
- short nEventId
- 1
-svtools/source/control/valueimp.hxx:410
+svtools/source/control/valueimp.hxx:407
void SvtValueItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
1
-svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx:208
- void drawinglayer::primitive2d::SdrBlockTextPrimitive2D::SdrBlockTextPrimitive2D(const class SdrText *,const class OutlinerParaObject &,const class basegfx::B2DHomMatrix &,enum SdrTextHorzAdjust,enum SdrTextVertAdjust,_Bool,_Bool,_Bool,_Bool,_Bool)
- _Bool bClipOnBounds
+svx/inc/sdginitm.hxx:34
+ void SdrGrafInvertItem::SdrGrafInvertItem(_Bool)
+ _Bool bInvert
+ 0
+svx/inc/sxcaitm.hxx:37
+ void SdrCaptionAngleItem::SdrCaptionAngleItem(long)
+ long nAngle
0
svx/inc/sxmtaitm.hxx:30
void SdrMeasureTextAutoAngleItem::SdrMeasureTextAutoAngleItem(_Bool)
_Bool bOn
1
+svx/inc/xftshtit.hxx:33
+ void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short)
+ unsigned short nShdwTransparence
+ 0
svx/qa/unit/classicshapes.cxx:34
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> (anonymous namespace)::ClassicshapesTest::getShape(unsigned char,unsigned char)
unsigned char nShapeIndex
@@ -3498,7 +3478,7 @@ svx/source/customshapes/EnhancedCustomShape3d.cxx:138
_Bool GetBool(const class SdrCustomShapeGeometryItem &,const class rtl::OUString &,const _Bool)
const _Bool bDefault
0
-svx/source/dialog/srchdlg.cxx:725
+svx/source/dialog/srchdlg.cxx:727
void (anonymous namespace)::ToggleSaveToModule::ToggleSaveToModule(class SvxSearchDialog &,_Bool)
_Bool bValue
0
@@ -3554,35 +3534,35 @@ sw/inc/dbfld.hxx:83
void SwDBField::ChgValue(double,_Bool)
_Bool bVal
1
-sw/inc/doc.hxx:992
+sw/inc/doc.hxx:994
void SwDoc::CorrAbs(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool)
_Bool bMoveCursor
1
-sw/inc/doc.hxx:1006
+sw/inc/doc.hxx:1008
void SwDoc::CorrAbs(const class SwPaM &,const struct SwPosition &,_Bool)
_Bool bMoveCursor
1
-sw/inc/doc.hxx:1012
+sw/inc/doc.hxx:1014
void SwDoc::CorrRel(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool)
const int nOffset
0
-sw/inc/doc.hxx:1051
+sw/inc/doc.hxx:1053
void SwDoc::SetCounted(const class SwPaM &,_Bool,const class SwRootFrame *)
_Bool bCounted
1
-sw/inc/doc.hxx:1120
+sw/inc/doc.hxx:1122
const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool)
const _Bool bForward
0
-sw/inc/doc.hxx:1120
+sw/inc/doc.hxx:1122
const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool)
const _Bool bOutline
0
-sw/inc/doc.hxx:1412
+sw/inc/doc.hxx:1414
const class SvNumberFormatter * SwDoc::GetNumberFormatter(_Bool) const
_Bool bCreate
1
-sw/inc/doc.hxx:1627
+sw/inc/doc.hxx:1629
void SwDoc::dumpAsXml(struct _xmlTextWriter *) const
struct _xmlTextWriter *
0
@@ -3734,6 +3714,14 @@ sw/inc/undobj.hxx:337
void SwUndoDelLayFormat::ChgShowSel(_Bool)
_Bool bNew
0
+sw/inc/unocrsrhelper.hxx:156
+ void SetPropertyValue(class SwPaM &,const class SfxItemPropertySet &,const class rtl::OUString &,const class com::sun::star::uno::Any &,const enum SetAttrMode)
+ const enum SetAttrMode nAttrMode
+ 0
+sw/qa/core/doc/doc.cxx:26
+ class SwDoc * SwCoreDocTest::createDoc(const char *)
+ const char * pName
+ 0
sw/qa/extras/ooxmlimport/ooxmlimport.cxx:86
void FailTest::executeImportTest(const char *,const char *)
const char *
@@ -3746,7 +3734,7 @@ sw/qa/inc/swmodeltestbase.hxx:303
void SwModelTestBase::executeImportExport(const char *,const char *)
const char * pPassword
0
-sw/qa/uibase/shells/shells.cxx:29
+sw/qa/uibase/shells/shells.cxx:37
class SwDoc * SwUibaseShellsTest::createDoc(const char *)
const char * pName
0
@@ -3758,10 +3746,6 @@ sw/source/core/crsr/swcrsr.cxx:69
void (anonymous namespace)::PercentHdl::PercentHdl(unsigned long,unsigned long,class SwDocShell *)
unsigned long nStt
0
-sw/source/core/doc/doccomp.cxx:152
- void (anonymous namespace)::CompareMainText::CompareMainText(class SwDoc &,_Bool)
- _Bool bRecordDiff
- 0
sw/source/core/inc/drawfont.hxx:107
void SwDrawTextInfo::SwDrawTextInfo(const class SwViewShell *,class OutputDevice &,const class rtl::OUString &,const int,const int,unsigned short,_Bool)
unsigned short nWidth
@@ -3826,15 +3810,11 @@ sw/source/filter/inc/fltshell.hxx:316
void ImportProgress::ImportProgress(class SwDocShell *,long,long)
long nStartVal
0
-sw/source/filter/inc/msfilter.hxx:303
- void sw::util::RedlineStack::MoveAttrs(const struct SwPosition &,enum sw::util::RedlineStack::MoveAttrsMode)
- enum sw::util::RedlineStack::MoveAttrsMode eMode
- 1
sw/source/filter/inc/wrtswtbl.hxx:280
unsigned short SwWriteTable::GetRelWidth(unsigned short,unsigned short) const
unsigned short nColSpan
1
-sw/source/filter/ww8/docxattributeoutput.hxx:725
+sw/source/filter/ww8/docxattributeoutput.hxx:726
void DocxAttributeOutput::CmdEndField_Impl(const class SwTextNode *,int,_Bool)
_Bool bWriteRun
1
@@ -3842,7 +3822,7 @@ sw/source/filter/ww8/needed_cast.hxx:27
type-parameter-?-? checking_cast(type-parameter-?-?,type-parameter-?-?)
type-parameter-?-?
0
-sw/source/filter/ww8/writerwordglue.cxx:329
+sw/source/filter/ww8/writerwordglue.cxx:330
void myImplHelpers::(anonymous namespace)::IfBeforeStart::IfBeforeStart(int)
int nStart
0
@@ -3850,27 +3830,27 @@ sw/source/filter/ww8/wrtww8.hxx:185
void WW8_SepInfo::WW8_SepInfo(const class SwPageDesc *,const class SwSectionFormat *,unsigned long,class std::optional<unsigned short>,const class SwNode *,_Bool)
_Bool bIsFirstPara
0
-sw/source/filter/ww8/wrtww8.hxx:643
+sw/source/filter/ww8/wrtww8.hxx:644
void MSWordExportBase::OutputItemSet(const class SfxItemSet &,_Bool,_Bool,unsigned short,_Bool)
unsigned short nScript
1
-sw/source/filter/ww8/wrtww8.hxx:893
+sw/source/filter/ww8/wrtww8.hxx:894
void MSWordExportBase::NearestAnnotationMark(int &,const int,_Bool)
_Bool bNextPositionOnly
0
-sw/source/filter/ww8/wrtww8.hxx:1375
+sw/source/filter/ww8/wrtww8.hxx:1376
void WW8_WrMagicTable::Append(int,unsigned long)
- int nCp
+ unsigned long nData
0
-sw/source/filter/ww8/wrtww8.hxx:1375
+sw/source/filter/ww8/wrtww8.hxx:1376
void WW8_WrMagicTable::Append(int,unsigned long)
- unsigned long nData
+ int nCp
0
sw/source/filter/ww8/ww8par.cxx:438
class rtl::OUString (anonymous namespace)::Sttb::getStringAtIndex(unsigned int)
unsigned int
1
-sw/source/filter/ww8/ww8par.hxx:1682
+sw/source/filter/ww8/ww8par.hxx:1683
_Bool SwWW8ImplReader::SetUpperSpacing(class SwPaM &,int)
int nSpace
0
@@ -3924,11 +3904,11 @@ sw/source/uibase/inc/FrameControlsManager.hxx:41
0
sw/source/uibase/inc/frmmgr.hxx:98
void SwFlyFrameAttrMgr::SetLRSpace(long,long)
- long nRight
+ long nLeft
0
sw/source/uibase/inc/frmmgr.hxx:98
void SwFlyFrameAttrMgr::SetLRSpace(long,long)
- long nLeft
+ long nRight
0
sw/source/uibase/inc/frmmgr.hxx:100
void SwFlyFrameAttrMgr::SetULSpace(long,long)
@@ -4002,22 +3982,22 @@ ucb/source/ucp/webdav-neon/NeonSession.hxx:251
int webdav_ucp::NeonSession::GET0(struct ne_session_s *,const char *,_Bool,void *)
_Bool getheaders
1
-vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:38
+vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:36
class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateMenuItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,_Bool)
- _Bool isEnabled
+ _Bool isVisible
1
-vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:38
+vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:36
class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateMenuItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,_Bool)
+ _Bool isEnabled
+ 1
+vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:43
+ class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int)
_Bool isVisible
1
-vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:45
+vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:43
class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int)
int nStyle
0
-vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:45
- class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int)
- _Bool isVisible
- 1
vcl/backendtest/outputdevice/common.cxx:166
enum vcl::test::TestResult checkDiamondLine(class Bitmap &,int,class Color)
int aLayerNumber
@@ -4026,11 +4006,15 @@ vcl/backendtest/VisualBackendTest.cxx:53
void drawBitmapScaledAndCentered(const class tools::Rectangle &,class Bitmap,class OutputDevice &,enum BmpScaleFlag)
enum BmpScaleFlag aFlag
1
+vcl/headless/svpgdi.cxx:257
+ void (anonymous namespace)::SourceHelper::SourceHelper(const class SalBitmap &,const _Bool)
+ const _Bool bForceARGB32
+ 1
vcl/inc/listbox.hxx:144
class rtl::OUString ImplEntryList::GetSelectedEntry(int) const
int nIndex
0
-vcl/inc/listbox.hxx:337
+vcl/inc/listbox.hxx:338
void ImplListBoxWindow::EnableMouseMoveSelect(_Bool)
_Bool bMouseMoveSelect
1
@@ -4082,7 +4066,7 @@ vcl/inc/salgdi.hxx:134
void SalGraphics::GetFontMetric(class tools::SvRef<class ImplFontMetricData> &,int)
int nFallbackLevel
0
-vcl/inc/salgdi.hxx:501
+vcl/inc/salgdi.hxx:503
void SalGraphics::copyArea(long,long,long,long,long,long,_Bool)
_Bool bWindowInvalidate
1
@@ -4098,14 +4082,10 @@ vcl/inc/sft.hxx:588
enum vcl::SFErrCodes CreateT3FromTTGlyphs(struct vcl::TrueTypeFont *,struct _IO_FILE *,const char *,const unsigned short *,unsigned char *,int,int)
int wmode
0
-vcl/inc/skia/utils.hxx:34
+vcl/inc/skia/utils.hxx:35
void disableRenderMethod(enum SkiaHelper::RenderMethod)
enum SkiaHelper::RenderMethod method
1
-vcl/inc/svimpbox.hxx:184
- void SvImpLBox::FindMostRight(class SvTreeListEntry *,class SvTreeListEntry *)
- class SvTreeListEntry * EntryToIgnore
- 0
vcl/inc/svimpbox.hxx:277
void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool)
_Bool bSelect
@@ -4210,15 +4190,15 @@ vcl/qa/cppunit/BitmapTest.cxx:68
void assertColorsAreSimilar(int,const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,const class BitmapColor &,const class BitmapColor &)
int maxDifference
1
-vcl/source/app/salvtables.cxx:1864
+vcl/source/app/salvtables.cxx:1603
void (anonymous namespace)::SalInstanceAboutDialog::SalInstanceAboutDialog(class vcl::AboutDialog *,class SalInstanceBuilder *,_Bool)
_Bool bTakeOwnership
0
-vcl/source/app/salvtables.cxx:1933
+vcl/source/app/salvtables.cxx:1673
void (anonymous namespace)::SalInstanceAssistant::SalInstanceAssistant(class vcl::RoadmapWizard *,class SalInstanceBuilder *,_Bool)
_Bool bTakeOwnership
0
-vcl/source/app/salvtables.cxx:2135
+vcl/source/app/salvtables.cxx:1871
void (anonymous namespace)::SalInstanceFrame::SalInstanceFrame(class VclFrame *,class SalInstanceBuilder *,_Bool)
_Bool bTakeOwnership
0
@@ -4278,15 +4258,15 @@ vcl/unx/generic/print/psputil.hxx:46
_Bool WritePS(class osl::File *,const char *,unsigned long)
unsigned long nInLength
1
-vcl/unx/gtk3/gtk3gtkinst.cxx:4585
+vcl/unx/gtk3/gtk3gtkinst.cxx:4657
void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
_Bool bTakeOwnership
1
-vcl/unx/gtk3/gtk3gtkinst.cxx:4585
+vcl/unx/gtk3/gtk3gtkinst.cxx:4657
void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
class (anonymous namespace)::GtkInstanceBuilder * pBuilder
0
-vcl/unx/gtk3/gtk3gtkinst.cxx:10149
+vcl/unx/gtk3/gtk3gtkinst.cxx:10328
int (anonymous namespace)::GtkInstanceTreeView::starts_with(const class rtl::OUString &,int,int,_Bool)
int col
0
@@ -4298,19 +4278,19 @@ workdir/../vcl/inc/qt5/Qt5Instance.hxx:76
_Bool Qt5Instance::ImplYieldSignal(_Bool,_Bool)
_Bool bWait
0
-writerfilter/inc/dmapper/resourcemodel.hxx:242
+writerfilter/inc/dmapper/resourcemodel.hxx:241
void writerfilter::Stream::text(const unsigned char *,unsigned long)
unsigned long len
1
-writerfilter/inc/ooxml/OOXMLDocument.hxx:134
+writerfilter/inc/ooxml/OOXMLDocument.hxx:133
void writerfilter::ooxml::OOXMLDocument::resolveFootnote(class writerfilter::Stream &,unsigned int,const int)
unsigned int aNoteType
0
-writerfilter/inc/ooxml/OOXMLDocument.hxx:147
+writerfilter/inc/ooxml/OOXMLDocument.hxx:146
void writerfilter::ooxml::OOXMLDocument::resolveEndnote(class writerfilter::Stream &,unsigned int,const int)
unsigned int aNoteType
0
-writerfilter/source/dmapper/DomainMapper.hxx:116
+writerfilter/source/dmapper/DomainMapper.hxx:117
void writerfilter::dmapper::DomainMapper::hasControls(const _Bool)
const _Bool bSet
1
@@ -4350,6 +4330,10 @@ xmloff/source/chart/transporttypes.hxx:180
void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> &,int,int,const class rtl::OUString &,int)
int nPointRepeat
1
+xmloff/source/script/xmlbasicscript.hxx:54
+ void xmloff::BasicLibrariesElement::BasicLibrariesElement(class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,_Bool)
+ _Bool bOasis
+ 1
xmloff/source/text/txtflde.cxx:276
_Bool GetOptionalBoolProperty(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySetInfo> &,_Bool)
_Bool bDefault
diff --git a/compilerplugins/clang/constantparam.constructors.results b/compilerplugins/clang/constantparam.constructors.results
index 72b221a626db..4d8e68646c5a 100644
--- a/compilerplugins/clang/constantparam.constructors.results
+++ b/compilerplugins/clang/constantparam.constructors.results
@@ -34,6 +34,14 @@ configmgr/source/dconf.cxx:201
void configmgr::dconf::(anonymous namespace)::ChangesetHolder::ChangesetHolder(struct _DConfChangeset *)
struct _DConfChangeset * changeset
dconf_changeset_new()
+connectivity/inc/sdbcx/VKeyColumn.hxx:40
+ void connectivity::sdbcx::OKeyColumn::OKeyColumn(_Bool)
+ _Bool _bCase
+ isCaseSensitive()
+connectivity/inc/sdbcx/VKeyColumn.hxx:41
+ void connectivity::sdbcx::OKeyColumn::OKeyColumn(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
+ _Bool _bCase
+ isCaseSensitive()
connectivity/source/commontools/TColumnsHelper.cxx:47
void connectivity::OColumnsHelperImpl::OColumnsHelperImpl(_Bool)
_Bool _bCase
@@ -52,11 +60,11 @@ connectivity/source/inc/calc/CTable.hxx:57
""
connectivity/source/inc/calc/CTable.hxx:57
void connectivity::calc::OCalcTable::OCalcTable(class connectivity::sdbcx::OCollection *,class connectivity::calc::OCalcConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & Description
+ const class rtl::OUString & CatalogName
""
connectivity/source/inc/calc/CTable.hxx:57
void connectivity::calc::OCalcTable::OCalcTable(class connectivity::sdbcx::OCollection *,class connectivity::calc::OCalcConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & CatalogName
+ const class rtl::OUString & Description
""
connectivity/source/inc/dbase/DTable.hxx:148
void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
@@ -64,11 +72,11 @@ connectivity/source/inc/dbase/DTable.hxx:148
""
connectivity/source/inc/dbase/DTable.hxx:148
void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & CatalogName
+ const class rtl::OUString & Description
""
connectivity/source/inc/dbase/DTable.hxx:148
void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & Description
+ const class rtl::OUString & CatalogName
""
connectivity/source/inc/flat/ETable.hxx:79
void connectivity::flat::OFlatTable::OFlatTable(class connectivity::sdbcx::OCollection *,class connectivity::flat::OFlatConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
@@ -222,11 +230,11 @@ filter/source/flash/swfwriter.hxx:140
void swf::FlashFont::FlashFont(const class vcl::Font &,unsigned short)
unsigned short nId
createID()
-forms/source/component/ListBox.cxx:1549
+forms/source/component/ListBox.cxx:1541
class com::sun::star::uno::Any lcl_getSingleSelectedEntryAny(const class com::sun::star::uno::Sequence<short> &,const class std::__debug::vector<class connectivity::ORowSetValue, class std::allocator<class connectivity::ORowSetValue> > &)
const class std::__debug::vector<class connectivity::ORowSetValue, class std::allocator<class connectivity::ORowSetValue> > & _rStringList
impl_getValues()
-forms/source/component/ListBox.cxx:1565
+forms/source/component/ListBox.cxx:1557
class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> lcl_getMultiSelectedEntriesAny(const class com::sun::star::uno::Sequence<short> &,const class std::__debug::vector<class connectivity::ORowSetValue, class std::allocator<class connectivity::ORowSetValue> > &)
const class std::__debug::vector<class connectivity::ORowSetValue, class std::allocator<class connectivity::ORowSetValue> > & _rStringList
impl_getValues()
@@ -274,14 +282,6 @@ include/connectivity/PColumn.hxx:135
void connectivity::parse::OOrderColumn::OOrderColumn(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool)
_Bool _bCase
isCaseSensitive()
-include/connectivity/sdbcx/VKeyColumn.hxx:41
- void connectivity::sdbcx::OKeyColumn::OKeyColumn(_Bool)
- _Bool _bCase
- isCaseSensitive()
-include/connectivity/sdbcx/VKeyColumn.hxx:42
- void connectivity::sdbcx::OKeyColumn::OKeyColumn(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- _Bool _bCase
- isCaseSensitive()
include/connectivity/sdbcx/VView.hxx:67
void connectivity::sdbcx::OView::OView(_Bool,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDatabaseMetaData> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
const class rtl::OUString & _rCommand
@@ -310,19 +310,19 @@ include/i18nlangtag/languagetagicu.hxx:49
class icu_65::Locale LanguageTagIcu::getIcuLocale(const class LanguageTag &,const class rtl::OUString &,const class rtl::OUString &)
const class rtl::OUString & rVariant
""
-include/o3tl/sorted_vector.hxx:312
+include/o3tl/sorted_vector.hxx:317
_Bool o3tl::less_ptr_to::operator()(type-parameter-?-? *const &,type-parameter-?-? *const &) const
type-parameter-?-? *const & lhs
Compare()
-include/o3tl/sorted_vector.hxx:320
+include/o3tl/sorted_vector.hxx:325
_Bool o3tl::less_uniqueptr_to::operator()(const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &,const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &) const
const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > & lhs
Compare()
-include/o3tl/sorted_vector.hxx:334
+include/o3tl/sorted_vector.hxx:339
pair<typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator, _Bool> o3tl::find_unique::operator()(typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,const type-parameter-?-? &)
typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator first
Find_t()
-include/o3tl/sorted_vector.hxx:351
+include/o3tl/sorted_vector.hxx:356
pair<typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator, _Bool> o3tl::find_partialorder_ptrequals::operator()(typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,const type-parameter-?-? &)
typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator first
Find_t()
@@ -336,11 +336,11 @@ include/oox/mathml/importutils.hxx:210
currentToken()
include/opencl/openclconfig.hxx:36
void OpenCLConfig::ImplMatcher::ImplMatcher(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & rDevice
+ const class rtl::OUString & rOSVersion
""
include/opencl/openclconfig.hxx:36
void OpenCLConfig::ImplMatcher::ImplMatcher(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & rOSVersion
+ const class rtl::OUString & rDevice
""
include/opencl/openclwrapper.hxx:61
_Bool buildProgramFromBinary(const char *,struct openclwrapper::GPUEnv *,const char *,int)
@@ -394,15 +394,15 @@ include/registry/writer.hxx:131
void typereg::Writer::setFieldData(unsigned short,const class rtl::OUString &,const class rtl::OUString &,enum RTFieldAccess,const class rtl::OUString &,const class rtl::OUString &,const class RTConstValue &)
const class rtl::OUString & fileName
""
-include/sfx2/dinfdlg.hxx:84
+include/sfx2/dinfdlg.hxx:83
void SfxDocumentInfoItem::SfxDocumentInfoItem(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::document::XDocumentProperties> &,const class com::sun::star::uno::Sequence<struct com::sun::star::document::CmisProperty> &,_Bool,_Bool)
_Bool bUseUserData
IsUseUserData()
-include/sfx2/dinfdlg.hxx:84
+include/sfx2/dinfdlg.hxx:83
void SfxDocumentInfoItem::SfxDocumentInfoItem(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::document::XDocumentProperties> &,const class com::sun::star::uno::Sequence<struct com::sun::star::document::CmisProperty> &,_Bool,_Bool)
_Bool bUseThumbnailSave
IsUseThumbnailSave()
-include/sfx2/dinfdlg.hxx:376
+include/sfx2/dinfdlg.hxx:375
void CustomPropertiesWindow::AddLine(const class rtl::OUString &,const class com::sun::star::uno::Any &)
const class rtl::OUString & sName
""
@@ -450,18 +450,10 @@ include/svx/charmap.hxx:150
void SvxShowCharSet::DrawChars_Impl(class OutputDevice &,int,int)
int n1
FirstInView()
-include/svx/colorwindow.hxx:173
+include/svx/colorwindow.hxx:172
void ColorWindow::ColorWindow(const class rtl::OUString &,const class std::shared_ptr<class PaletteManager> &,class ColorStatus &,unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,class weld::Window *,const class MenuOrToolMenuButton &,const class std::function<void (const class rtl::OUString &, const struct std::pair<class Color, class rtl::OUString> &)> &)
const class rtl::OUString & rCommand
""
-include/svx/DescriptionGenerator.hxx:125
- void accessibility::DescriptionGenerator::AddColor(const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & sLocalizedName
- ""
-include/svx/DescriptionGenerator.hxx:130
- void accessibility::DescriptionGenerator::AddInteger(const class rtl::OUString &,const class rtl::OUString &)
- const class rtl::OUString & sLocalizedName
- ""
include/svx/svdtrans.hxx:62
void RotateXPoly(class XPolyPolygon &,const class Point &,double,double)
const class Point & rRef
@@ -486,14 +478,14 @@ include/vcl/dockwin.hxx:48
void EndDockingData::EndDockingData(const class tools::Rectangle &,_Bool,_Bool)
_Bool b
IsFloatingMode()
-include/vcl/field.hxx:342
- class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &)
- _Bool bDuration
- IsDuration()
-include/vcl/field.hxx:342
+include/vcl/field.hxx:337
class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &)
const class LocaleDataWrapper & rLocaleDataWrapper
ImplGetLocaleDataWrapper()
+include/vcl/field.hxx:337
+ class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &)
+ _Bool bDuration
+ IsDuration()
include/vcl/FilterConfigItem.hxx:75
class rtl::OUString FilterConfigItem::ReadString(const class rtl::OUString &,const class rtl::OUString &)
const class rtl::OUString & rDefault
@@ -502,27 +494,27 @@ include/vcl/graphictools.hxx:278
void SvtGraphicFill::SvtGraphicFill(const class tools::PolyPolygon &,class Color,double,enum SvtGraphicFill::FillRule,enum SvtGraphicFill::FillType,const struct SvtGraphicFill::Transform &,_Bool,enum SvtGraphicFill::HatchType,class Color,enum SvtGraphicFill::GradientType,class Color,class Color,int,const class Graphic &)
class Color aFillColor
Color()
-include/vcl/outdev.hxx:1569
+include/vcl/outdev.hxx:1576
class Bitmap OutputDevice::GetDownsampledBitmap(const class Size &,const class Point &,const class Size &,const class Bitmap &,long,long)
const class Point & rSrcPt
Point()
-include/vcl/print.hxx:647
+include/vcl/print.hxx:649
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setSubgroupControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
const class rtl::OUString & i_rHelpId
""
-include/vcl/print.hxx:663
+include/vcl/print.hxx:665
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setChoiceRadiosControlOpt(const class com::sun::star::uno::Sequence<class rtl::OUString> &,const class rtl::OUString &,const class com::sun::star::uno::Sequence<class rtl::OUString> &,const class rtl::OUString &,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,const class com::sun::star::uno::Sequence<unsigned char> &,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
const class rtl::OUString & i_rTitle
""
-include/vcl/print.hxx:674
+include/vcl/print.hxx:676
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
const class rtl::OUString & i_rTitle
""
-include/vcl/print.hxx:682
+include/vcl/print.hxx:684
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setEditControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
const class rtl::OUString & i_rTitle
""
-include/vcl/toolbox.hxx:410
+include/vcl/toolbox.hxx:413
void ToolBox::SetHelpText(unsigned short,const class rtl::OUString &)
const class rtl::OUString & rText
""
@@ -538,7 +530,7 @@ include/vcl/transfer.hxx:357
class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &)
const class rtl::OUString & rDestDoc
""
-include/vcl/treelistbox.hxx:713
+include/vcl/treelistbox.hxx:712
void SvTreeListBox::ShowFocusRect(const class SvTreeListEntry *)
const class SvTreeListEntry * pEntry
FirstSelected()
@@ -546,11 +538,11 @@ include/vcl/virdev.hxx:162
_Bool VirtualDevice::SetOutputSizePixelScaleOffsetAndBuffer(const class Size &,const class Fraction &,const class Point &,unsigned char *)
const class Point & rNewOffset
Point()
-include/vcl/weld.hxx:557
+include/vcl/weld.hxx:564
void weld::ComboBoxEntry::ComboBoxEntry(const class rtl::OUString &)
const class rtl::OUString & rString
""
-include/vcl/weld.hxx:615
+include/vcl/weld.hxx:622
void weld::ComboBox::append(const class rtl::OUString &,const class rtl::OUString &,class VirtualDevice &)
const class rtl::OUString & rId
""
@@ -654,7 +646,7 @@ sc/source/core/data/documen3.cxx:1721
_Bool lcl_AddTwipsWhile(long &,long,int &,int,const class ScTable *,_Bool)
int nEndRow
MaxRow()
-sc/source/core/tool/token.cxx:4826
+sc/source/core/tool/token.cxx:4820
void appendTokenByType(struct ScSheetLimits &,struct sc::TokenStringContext &,class rtl::OUStringBuffer &,const class formula::FormulaToken &,const class ScAddress &,_Bool)
_Bool bFromRangeName
IsFromRangeName()
@@ -726,7 +718,7 @@ sd/source/filter/eppt/eppt.hxx:177
unsigned int PPTWriter::ImplInsertBookmarkURL(const class rtl::OUString &,const unsigned int,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
const class rtl::OUString & rStringVer2
""
-sd/source/filter/eppt/pptx-animations.cxx:552
+sd/source/filter/eppt/pptx-animations.cxx:558
void (anonymous namespace)::NodeContext::initValid(_Bool,_Bool)
_Bool bHasValidChild
initChildNodes()
@@ -830,7 +822,7 @@ svx/source/svdraw/svdmodel.cxx:1894
void addPair(class std::__debug::vector<struct std::pair<class rtl::OUString, class com::sun::star::uno::Any>, class std::allocator<struct std::pair<class rtl::OUString, class com::sun::star::uno::Any> > > &,const class rtl::OUString &,const type-parameter-?-?)
const type-parameter-?-? val
IsAnchoredTextOverflowLegacy()
-sw/inc/doc.hxx:918
+sw/inc/doc.hxx:920
const class SwTOXMark & SwDoc::GotoTOXMark(const class SwTOXMark &,enum SwTOXSearch,_Bool)
_Bool bInReadOnly
IsReadOnlyAvailable()
@@ -926,8 +918,8 @@ sw/source/core/text/itrpaint.hxx:48
void SwTextPainter::DrawTextLine(const class SwRect &,class SwSaveClip &,const _Bool)
const _Bool bUnderSz
IsUndersized()
-sw/source/filter/html/swcss1.hxx:78
- void SwCSS1Parser::SwCSS1Parser(class SwDoc *,const unsigned int *,const class rtl::OUString &,_Bool)
+sw/source/filter/html/swcss1.hxx:80
+ void SwCSS1Parser::SwCSS1Parser(class SwDoc *,const class SwHTMLParser &,const unsigned int *,const class rtl::OUString &,_Bool)
_Bool bNewDoc
IsNewDoc()
sw/source/filter/html/swhtml.hxx:897
@@ -938,11 +930,11 @@ sw/source/filter/inc/wrtswtbl.hxx:203
_Bool SwWriteTableColLess::operator()(const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > &,const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > &)
const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > & lhs
Compare()
-sw/source/filter/ww8/docxattributeoutput.cxx:5773
+sw/source/filter/ww8/docxattributeoutput.cxx:5759
_Bool (anonymous namespace)::OUStringIgnoreCase::operator()(const class rtl::OUString &,const class rtl::OUString &) const
const class rtl::OUString & lhs
Compare()
-sw/source/filter/ww8/docxexport.hxx:277
+sw/source/filter/ww8/docxexport.hxx:278
void DocxExport::DocxExport(class DocxExportFilter *,class SwDoc *,class std::shared_ptr<class SwUnoCursor> &,class SwPaM *,_Bool,_Bool)
_Bool bTemplate
isExportTemplate()
@@ -958,7 +950,7 @@ sw/source/filter/xml/xmlimp.hxx:129
void SwXMLImport::InsertStyles(_Bool)
_Bool bAuto
IsAutomaticStyle()
-sw/source/filter/xml/xmltble.cxx:87
+sw/source/filter/xml/xmltble.cxx:88
_Bool (anonymous namespace)::SwXMLTableColumnCmpWidth_Impl::operator()(class SwXMLTableColumn_Impl *const &,class SwXMLTableColumn_Impl *const &) const
class SwXMLTableColumn_Impl *const & lhs
Compare()
@@ -968,12 +960,12 @@ sw/source/filter/xml/xmltexti.hxx:38
IsInsertMode()
sw/source/filter/xml/xmltexti.hxx:38
void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool)
- _Bool bStylesOnlyM
- IsStylesOnlyMode()
-sw/source/filter/xml/xmltexti.hxx:38
- void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool)
_Bool bBlockM
IsBlockMode()
+sw/source/filter/xml/xmltexti.hxx:38
+ void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool)
+ _Bool bStylesOnlyM
+ IsStylesOnlyMode()
sw/source/ui/vba/vbadocuments.cxx:51
void (anonymous namespace)::DocumentEnumImpl::DocumentEnumImpl(const class com::sun::star::uno::Reference<class ooo::vba::XHelperInterface> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::container::XEnumeration> &,const class com::sun::star::uno::Any &)
const class com::sun::star::uno::Any & aApplication
@@ -1050,23 +1042,23 @@ vcl/source/control/field2.cxx:1883
_Bool ImplTimeProcessKeyInput(const class KeyEvent &,_Bool,_Bool,enum TimeFieldFormat,const class LocaleDataWrapper &)
_Bool bStrictFormat
IsStrictFormat()
-vcl/source/control/field.cxx:1015
+vcl/source/control/field.cxx:1001
_Bool ImplMetricProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &)
_Bool bUseThousandSep
IsUseThousandSep()
-vcl/source/control/field.cxx:1015
+vcl/source/control/field.cxx:1001
_Bool ImplMetricProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &)
const class LocaleDataWrapper & rWrapper
ImplGetLocaleDataWrapper()
-vcl/source/control/field.cxx:1815
- _Bool ImplCurrencyProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &)
- const class LocaleDataWrapper & rWrapper
- ImplGetLocaleDataWrapper()
-vcl/source/control/field.cxx:1815
+vcl/source/control/field.cxx:1797
_Bool ImplCurrencyProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &)
_Bool bUseThousandSep
IsUseThousandSep()
-vcl/source/control/field.cxx:1822
+vcl/source/control/field.cxx:1797
+ _Bool ImplCurrencyProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &)
+ const class LocaleDataWrapper & rWrapper
+ ImplGetLocaleDataWrapper()
+vcl/source/control/field.cxx:1804
_Bool ImplCurrencyGetValue(const class rtl::OUString &,long &,unsigned short,const class LocaleDataWrapper &)
const class LocaleDataWrapper & rWrapper
ImplGetLocaleDataWrapper()
diff --git a/compilerplugins/clang/constantparam.numbers.results b/compilerplugins/clang/constantparam.numbers.results
index fec08affaa4b..22ef8aed064b 100644
--- a/compilerplugins/clang/constantparam.numbers.results
+++ b/compilerplugins/clang/constantparam.numbers.results
@@ -30,6 +30,10 @@ basic/source/inc/sbjsmeth.hxx:33
void SbJScriptMethod::SbJScriptMethod(enum SbxDataType)
enum SbxDataType
12
+canvas/inc/verifyinput.hxx:103
+ void verifyInput(const struct com::sun::star::geometry::Matrix2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
+ short nArgPos
+ 2
canvas/workben/canvasdemo.cxx:146
void (anonymous namespace)::DemoRenderer::drawStringAt(class rtl::OString,double,double)
double y
@@ -42,15 +46,15 @@ canvas/workben/canvasdemo.cxx:485
void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double)
double r
15
-chart2/qa/extras/chart2export.cxx:449
+chart2/qa/extras/chart2export.cxx:458
void checkPolynomialTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int,double,double,double)
int aExpectedDegree
3
-chart2/qa/extras/chart2export.cxx:471
+chart2/qa/extras/chart2export.cxx:480
void checkMovingAverageTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int)
int aExpectedPeriod
3
-chart2/qa/extras/chart2export.cxx:947
+chart2/qa/extras/chart2export.cxx:956
void ::change(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,short)
short nNumFmtTypeFlag
16
@@ -106,7 +110,7 @@ connectivity/source/drivers/mork/MQueryHelper.hxx:172
_Bool connectivity::mork::MQueryHelper::getRowValue(class connectivity::ORowSetValue &,int,const class rtl::OUString &,int)
int nType
12
-connectivity/source/drivers/postgresql/pq_connection.cxx:433
+connectivity/source/drivers/postgresql/pq_connection.cxx:432
void properties2arrays(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,const class com::sun::star::uno::Reference<class com::sun::star::script::XTypeConverter> &,unsigned short,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &)
unsigned short enc
76
@@ -198,7 +202,7 @@ dbaccess/source/ui/inc/charsetlistbox.hxx:37
_Bool dbaui::CharSetListBox::StoreSelectedCharSet(class SfxItemSet &,const unsigned short)
const unsigned short _nItemId
11
-dbaccess/source/ui/inc/FieldDescControl.hxx:144
+dbaccess/source/ui/inc/FieldDescControl.hxx:146
void dbaui::OFieldDescControl::CellModified(long,unsigned short)
long nRow
-1
@@ -290,11 +294,11 @@ filter/source/msfilter/mscodec.cxx:97
unsigned short lclGetHash(const unsigned char *,unsigned long)
unsigned long nBufferSize
16
-forms/source/richtext/richtextcontrol.cxx:81
+forms/source/richtext/richtextcontrol.cxx:83
void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
long _nPositiveFlag
256
-forms/source/richtext/richtextcontrol.cxx:81
+forms/source/richtext/richtextcontrol.cxx:83
void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
long nNegativeFlag
512
@@ -398,10 +402,6 @@ include/basic/sbxcore.hxx:65
_Bool SbxBase::IsReset(enum SbxFlagBits) const
enum SbxFlagBits n
256
-include/canvas/verifyinput.hxx:104
- void verifyInput(const struct com::sun::star::geometry::Matrix2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
- short nArgPos
- 2
include/comphelper/docpasswordhelper.hxx:267
class rtl::OUString comphelper::DocPasswordHelper::GetOoxHashAsBase64(const class rtl::OUString &,const class rtl::OUString &,unsigned int,enum comphelper::Hash::IterCount,const class rtl::OUString &)
enum comphelper::Hash::IterCount eIterCount
@@ -462,7 +462,7 @@ include/drawinglayer/attribute/fillhatchattribute.hxx:66
void drawinglayer::attribute::FillHatchAttribute::FillHatchAttribute(enum drawinglayer::attribute::HatchStyle,double,double,const class basegfx::BColor &,unsigned int,_Bool)
unsigned int nMinimalDiscreteDistance
3
-include/drawinglayer/primitive2d/mediaprimitive2d.hxx:66
+include/drawinglayer/primitive2d/mediaprimitive2d.hxx:65
void drawinglayer::primitive2d::MediaPrimitive2D::MediaPrimitive2D(const class basegfx::B2DHomMatrix &,const class rtl::OUString &,const class basegfx::BColor &,unsigned int,const class Graphic &)
unsigned int nDiscreteBorder
4
@@ -648,12 +648,12 @@ include/o3tl/typed_flags_set.hxx:136
3583
include/oox/core/contexthandler2.hxx:169
_Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
- int nElement
- 459853
-include/oox/core/contexthandler2.hxx:169
- _Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
int nCountBack
4
+include/oox/core/contexthandler2.hxx:169
+ _Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
+ int nElement
+ 525390
include/oox/drawingml/drawingmltypes.hxx:226
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nX
@@ -677,11 +677,11 @@ include/oox/export/drawingml.hxx:205
include/oox/export/vmlexport.hxx:154
void oox::vml::VMLExport::AddShapeAttribute(int,const class rtl::OString &)
int nAttribute
- 5457
+ 5458
include/oox/helper/attributelist.hxx:136
const char * oox::AttributeList::getChar(int) const
int nAttrToken
- 4178
+ 4179
include/oox/helper/attributelist.hxx:159
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
unsigned int nDefault
@@ -689,7 +689,7 @@ include/oox/helper/attributelist.hxx:159
include/oox/helper/attributelist.hxx:159
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
int nAttrToken
- 4317
+ 4318
include/oox/helper/binaryoutputstream.hxx:86
void oox::BinaryOutputStream::writeCharArrayUC(const class rtl::OUString &,unsigned short)
unsigned short eTextEnc
@@ -709,7 +709,7 @@ include/oox/helper/helper.hxx:116
include/oox/helper/propertyset.hxx:110
_Bool oox::PropertySet::setProperty(int,class Color)
int nPropId
- 503
+ 504
include/oox/helper/textinputstream.hxx:42
void oox::TextInputStream::TextInputStream(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> &,unsigned short)
unsigned short eTextEnc
@@ -717,7 +717,7 @@ include/oox/helper/textinputstream.hxx:42
include/oox/mathml/importutils.hxx:122
class rtl::OUString & oox::formulaimport::XmlStream::AttributeList::operator[](int)
###1
- 1447390
+ 1512927
include/oox/mathml/importutils.hxx:135
void oox::formulaimport::XmlStream::Tag::Tag(int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &)
int token
@@ -725,11 +725,11 @@ include/oox/mathml/importutils.hxx:135
include/oox/mathml/importutils.hxx:150
_Bool oox::formulaimport::XmlStream::Tag::attribute(int,_Bool) const
int token
- 1447390
+ 1512927
include/oox/mathml/importutils.hxx:154
char16_t oox::formulaimport::XmlStream::Tag::attribute(int,char16_t) const
int token
- 1447390
+ 1512927
include/oox/ole/axcontrol.hxx:948
type-parameter-?-? & oox::ole::EmbeddedControl::createModel(const type-parameter-?-? &)
const type-parameter-?-? & rParam
@@ -798,7 +798,7 @@ include/sfx2/frame.hxx:201
void SfxUnoFrameItem::SfxUnoFrameItem(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &)
unsigned short nWhich
6516
-include/sfx2/infobar.hxx:108
+include/sfx2/infobar.hxx:111
class VclPtr<class SfxInfoBarWindow> SfxInfoBarContainerWindow::appendInfoBar(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,long,_Bool)
long nMessageStyle
278528
@@ -810,10 +810,6 @@ include/sfx2/lokhelper.hxx:32
void LokMouseEventData::LokMouseEventData(int,class Point,int,enum MouseEventModifiers,int,int)
enum MouseEventModifiers eModifiers
256
-include/sfx2/mgetempl.hxx:83
- _Bool SfxManageStyleSheetPage::Execute_Impl(unsigned short,const class rtl::OUString &,unsigned short)
- unsigned short nId
- 5550
include/sfx2/objsh.hxx:664
void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool)
enum InfobarType aInfobarType
@@ -950,20 +946,20 @@ include/svtools/brwbox.hxx:562
void BrowseBox::commitBrowseBoxEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
7
-include/svtools/ctrlbox.hxx:466
- void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
+include/svtools/ctrlbox.hxx:425
+ void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
+ unsigned short nMin
+ 5
+include/svtools/ctrlbox.hxx:425
+ void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMax
995
-include/svtools/ctrlbox.hxx:466
- void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
+include/svtools/ctrlbox.hxx:425
+ void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nStep
5
-include/svtools/ctrlbox.hxx:466
- void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
- unsigned short nMin
- 5
-include/svtools/ctrlbox.hxx:467
- void SvtFontSizeBox::EnablePtRelativeMode(short,short,short)
+include/svtools/ctrlbox.hxx:426
+ void FontSizeBox::EnablePtRelativeMode(short,short,short)
short nStep
10
include/svtools/editsyntaxhighlighter.hxx:41
@@ -974,14 +970,14 @@ include/svtools/htmlout.hxx:66
class SvStream & HTMLOutFuncs::Out_Hex(class SvStream &,unsigned long,unsigned char)
unsigned char nLen
2
-include/svtools/ServerDetailsControls.hxx:73
- void HostDetailsContainer::HostDetailsContainer(class PlaceEditDialog *,unsigned short,const class rtl::OUString &)
- unsigned short nPort
- 80
-include/svtools/unitconv.hxx:45
+include/svtools/unitconv.hxx:42
long ControlToItem(long,enum FieldUnit,enum MapUnit)
enum FieldUnit eCtrl
5
+include/svtools/valueset.hxx:291
+ void ValueSet::InsertItem(unsigned short,const class Image &,const class rtl::OUString &,unsigned long)
+ unsigned long nPos
+ -1
include/svx/AccessibleShape.hxx:207
_Bool accessibility::AccessibleShape::GetState(short)
short aState
@@ -1010,26 +1006,22 @@ include/svx/dbaexchange.hxx:97
void svx::OColumnTransferable::OColumnTransferable(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags _nFormats
5
-include/svx/dlgctrl.hxx:106
- void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short)
- enum RectPoint eRpt
- 4
-include/svx/dlgctrl.hxx:106
+include/svx/dlgctrl.hxx:105
void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short)
unsigned short nBorder
200
-include/svx/dlgctrl.hxx:107
- void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
+include/svx/dlgctrl.hxx:105
+ void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short)
enum RectPoint eRpt
4
-include/svx/dlgctrl.hxx:107
+include/svx/dlgctrl.hxx:106
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
unsigned short nBorder
240
-include/svx/dlgctrl.hxx:219
- void FillTypeLB::FillTypeLB(class vcl::Window *,long)
- long aWB
- 402653448
+include/svx/dlgctrl.hxx:106
+ void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
+ enum RectPoint eRpt
+ 4
include/svx/drawitem.hxx:59
void SvxGradientListItem::SvxGradientListItem(const class rtl::Reference<class XGradientList> &,unsigned short)
unsigned short nWhich
@@ -1078,7 +1070,7 @@ include/svx/fontworkgallery.hxx:63
void svx::FontWorkGalleryDialog::fillFavorites(unsigned short)
unsigned short nThemeId
37
-include/svx/framelink.hxx:146
+include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
double nP
3
@@ -1098,6 +1090,10 @@ include/svx/grfcrop.hxx:33
void SvxGrfCrop::SvxGrfCrop(unsigned short)
unsigned short
132
+include/svx/langbox.hxx:72
+ void SvxLanguageBox::InsertLanguage(const struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,short)
+ short nType
+ 4
include/svx/numinf.hxx:33
void SvxNumberInfoItem::SvxNumberInfoItem(const unsigned short)
const unsigned short nId
@@ -1122,8 +1118,8 @@ include/svx/optgrid.hxx:77
void SvxGridItem::SvxGridItem(unsigned short)
unsigned short _nWhich
10298
-include/svx/relfld.hxx:50
- void RelativeField::EnableRelativeMode(unsigned short,unsigned short)
+include/svx/relfld.hxx:43
+ void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
unsigned short nMax
999
include/svx/ruler.hxx:244
@@ -1232,12 +1228,12 @@ include/test/helper/shape.hxx:52
10000
include/test/helper/shape.hxx:52
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
- const int nX
- 7500
-include/test/helper/shape.hxx:52
- class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nWidth
5000
+include/test/helper/shape.hxx:52
+ class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
+ const int nX
+ 7500
include/test/helper/shape.hxx:66
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nY
@@ -1502,12 +1498,20 @@ include/vcl/errinf.hxx:180
void TwoStringErrorInfo::TwoStringErrorInfo(class ErrCode,const class rtl::OUString &,const class rtl::OUString &,enum DialogMask)
enum DialogMask nMask
4097
-include/vcl/field.hxx:470
- double MetricField::ConvertDoubleValue(long,unsigned short,enum FieldUnit,enum MapUnit)
+include/vcl/field.hxx:526
+ void MetricBox::InsertValue(long,enum FieldUnit,int)
+ enum FieldUnit eInUnit
+ 13
+include/vcl/field.hxx:526
+ void MetricBox::InsertValue(long,enum FieldUnit,int)
+ int nPos
+ 2147483647
+include/vcl/fieldvalues.hxx:60
+ double ConvertDoubleValue(long,unsigned short,enum FieldUnit,enum MapUnit)
enum MapUnit eOutUnit
9
-include/vcl/field.hxx:473
- double MetricField::ConvertDoubleValue(long,unsigned short,enum MapUnit,enum FieldUnit)
+include/vcl/fieldvalues.hxx:66
+ double ConvertDoubleValue(long,unsigned short,enum MapUnit,enum FieldUnit)
enum MapUnit eInUnit
9
include/vcl/floatwin.hxx:158
@@ -1538,7 +1542,7 @@ include/vcl/lstbox.hxx:116
void ListBox::ListBox(enum WindowType)
enum WindowType nType
332
-include/vcl/outdev.hxx:1167
+include/vcl/outdev.hxx:1174
int OutputDevice::GetTextBreak(const class rtl::OUString &,long,char16_t,int &,int,int,long,const class vcl::TextLayoutCache *) const
char16_t nExtraChar
45
@@ -1546,34 +1550,30 @@ 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 nSize
18446744073709551615
-include/vcl/print.hxx:674
+include/vcl/print.hxx:676
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
int i_nMaxValue
1000
-include/vcl/print.hxx:674
+include/vcl/print.hxx:676
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
int i_nMinValue
10
-include/vcl/svapp.hxx:750
+include/vcl/svapp.hxx:752
struct ImplSVEvent * Application::PostGestureEvent(enum VclEventId,class vcl::Window *,const class GestureEvent *)
enum VclEventId nEvent
129
-include/vcl/svtabbx.hxx:60
- void SvTabListBox::SetTab(unsigned short,long,enum MapUnit)
- enum MapUnit
- 10
-include/vcl/svtabbx.hxx:82
+include/vcl/texteng.hxx:136
+ class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool)
+ char16_t c
+ 9
+include/vcl/toolkit/svtabbx.hxx:84
class rtl::OUString SvTabListBox::GetEntryText(unsigned long,unsigned short) const
unsigned short nCol
65535
-include/vcl/svtabbx.hxx:88
+include/vcl/toolkit/svtabbx.hxx:89
void SvTabListBox::SetTabJustify(unsigned short,enum SvTabJustify)
enum SvTabJustify
8
-include/vcl/texteng.hxx:136
- class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool)
- char16_t c
- 9
include/vcl/transfer.hxx:227
void TransferableHelper::RemoveFormat(enum SotClipboardFormatId)
enum SotClipboardFormatId nFormat
@@ -1602,6 +1602,10 @@ include/vcl/treelistbox.hxx:526
void SvTreeListBox::GetLastTab(enum SvLBoxTabFlags,unsigned short &)
enum SvLBoxTabFlags nFlagMask
16
+include/vcl/treelistbox.hxx:691
+ void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
+ unsigned short nLastTab
+ 65535
include/vcl/vclevent.hxx:224
void VclAccessibleEvent::VclAccessibleEvent(enum VclEventId,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &)
enum VclEventId n
@@ -1610,39 +1614,39 @@ include/vcl/vclmedit.hxx:115
void VclMultiLineEdit::EnableUpdateData(unsigned long)
unsigned long nTimeout
300
-include/vcl/weld.hxx:619
- void weld::ComboBox::insert_separator(int,const class rtl::OUString &)
- int pos
- -1
-include/vcl/weld.hxx:820
+include/vcl/vclptr.hxx:127
+ VclPtr<T> VclPtr::Create(type-parameter-?-? &&...)
+ ###5
+ 20488
+include/vcl/weld.hxx:838
void weld::TreeView::set_sensitive(int,_Bool,int)
int col
-1
-include/vcl/weld.hxx:910
+include/vcl/weld.hxx:930
void weld::TreeView::set_image(const class weld::TreeIter &,const class rtl::OUString &,int)
int col
-1
-include/vcl/weld.hxx:1047
+include/vcl/weld.hxx:1068
void weld::IconView::insert(int,const class rtl::OUString *,const class rtl::OUString *,const class rtl::OUString *,class weld::TreeIter *)
int pos
-1
-include/vcl/weld.hxx:1078
+include/vcl/weld.hxx:1099
void weld::IconView::select(int)
int pos
-1
-include/vcl/weld.hxx:1079
+include/vcl/weld.hxx:1100
void weld::IconView::unselect(int)
int pos
-1
-include/vcl/weld.hxx:1938
+include/vcl/weld.hxx:1964
void weld::Menu::insert(int,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString *,class VirtualDevice *,_Bool)
int pos
-1
-include/vcl/weld.hxx:1944
+include/vcl/weld.hxx:1970
void weld::Menu::insert_separator(int,const class rtl::OUString &)
int pos
-1
-include/vcl/window.hxx:1569
+include/vcl/window.hxx:1571
void vcl::Window::SimulateKeyPress(unsigned short) const
unsigned short nKeyCode
1312
@@ -1659,16 +1663,16 @@ include/xmloff/txtparae.hxx:349
short nTextSectionId
5
include/xmloff/txtparae.hxx:377
- void XMLTextParagraphExport::Add(unsigned short,class MultiPropertySetHelper &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
- unsigned short nFamily
+ void XMLTextParagraphExport::Add(enum XmlStyleFamily,class MultiPropertySetHelper &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
+ enum XmlStyleFamily nFamily
100
-include/xmloff/xmlaustp.hxx:93
- void SvXMLAutoStylePoolP::SetFamilyPropSetMapper(int,const class rtl::Reference<class SvXMLExportPropertyMapper> &)
- int nFamily
+include/xmloff/xmlaustp.hxx:94
+ void SvXMLAutoStylePoolP::SetFamilyPropSetMapper(enum XmlStyleFamily,const class rtl::Reference<class SvXMLExportPropertyMapper> &)
+ enum XmlStyleFamily nFamily
203
-include/xmloff/xmlaustp.hxx:100
- void SvXMLAutoStylePoolP::RegisterDefinedName(int,const class rtl::OUString &)
- int nFamily
+include/xmloff/xmlaustp.hxx:101
+ void SvXMLAutoStylePoolP::RegisterDefinedName(enum XmlStyleFamily,const class rtl::OUString &)
+ enum XmlStyleFamily nFamily
204
include/xmloff/xmlerror.hxx:135
void XMLErrors::ThrowErrorAsSAXException(int)
@@ -1766,29 +1770,29 @@ o3tl/qa/cow_wrapper_clients.hxx:132
void o3tltests::cow_wrapper_client4::cow_wrapper_client4(int)
int
4
-oox/source/core/xmlfilterbase.cxx:596
+oox/source/core/xmlfilterbase.cxx:599
void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
int nXmlElement
- 93522801
-oox/source/core/xmlfilterbase.cxx:613
+ 93588338
+oox/source/core/xmlfilterbase.cxx:616
void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class LanguageTag &)
int nXmlElement
- 109972365
+ 110037902
oox/source/export/vmlexport.cxx:332
void impl_AddInt(class sax_fastparser::FastAttributeList *,int,unsigned int)
int nElement
- 5721
+ 5722
package/inc/ThreadedDeflater.hxx:55
void ZipUtils::ThreadedDeflater::ThreadedDeflater(int)
int nSetLevel
-1
reportdesign/source/filter/xml/xmlExport.hxx:131
- void rptxml::ORptExport::collectStyleNames(int,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
- int _nFamily
+ void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
+ enum XmlStyleFamily _nFamily
202
reportdesign/source/filter/xml/xmlExport.hxx:132
- void rptxml::ORptExport::collectStyleNames(int,const class std::__debug::vector<int, class std::allocator<int> > &,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
- int _nFamily
+ void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::__debug::vector<int, class std::allocator<int> > &,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
+ enum XmlStyleFamily _nFamily
203
reportdesign/source/filter/xml/xmlStyleImport.hxx:70
void rptxml::OControlStyleContext::AddProperty(short,const class com::sun::star::uno::Any &)
@@ -1926,7 +1930,7 @@ sc/inc/dpsave.hxx:317
class ScDPSaveDimension * ScDPSaveData::GetFirstDimension(enum com::sun::star::sheet::DataPilotFieldOrientation)
enum com::sun::star::sheet::DataPilotFieldOrientation eOrientation
4
-sc/inc/externalrefmgr.hxx:797
+sc/inc/externalrefmgr.hxx:790
void ScExternalRefManager::purgeStaleSrcDocument(int)
int nTimeOut
30000
@@ -1934,7 +1938,7 @@ sc/inc/formulacell.hxx:375
void ScFormulaCell::AddRecalcMode(enum ScRecalcMode)
enum ScRecalcMode
4
-sc/inc/global.hxx:669
+sc/inc/global.hxx:666
const char16_t * ScGlobal::FindUnquoted(const char16_t *,char16_t)
char16_t cChar
46
@@ -2098,26 +2102,26 @@ sc/qa/unit/ucalc.hxx:53
void Test::pasteOneCellFromClip(class ScDocument *,const class ScRange &,class ScDocument *,enum InsertDeleteFlags)
enum InsertDeleteFlags eFlags
2303
-sc/qa/unit/ucalc_formula.cxx:8209
+sc/qa/unit/ucalc_formula.cxx:8303
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nStart1
9
-sc/qa/unit/ucalc_formula.cxx:8209
- void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
- int nStart2
- 169
-sc/qa/unit/ucalc_formula.cxx:8209
+sc/qa/unit/ucalc_formula.cxx:8303
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd2
319
-sc/qa/unit/ucalc_formula.cxx:8209
+sc/qa/unit/ucalc_formula.cxx:8303
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nTotalRows
330
-sc/qa/unit/ucalc_formula.cxx:8209
+sc/qa/unit/ucalc_formula.cxx:8303
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd1
159
+sc/qa/unit/ucalc_formula.cxx:8303
+ void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
+ int nStart2
+ 169
sc/source/core/data/documen8.cxx:522
void (anonymous namespace)::IdleCalcTextWidthScope::incCol(short)
short nInc
@@ -2157,11 +2161,11 @@ sc/source/filter/excel/xechart.cxx:561
sc/source/filter/excel/xepage.cxx:343
void (anonymous namespace)::XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int)
const int nElement
- 2612
+ 2613
sc/source/filter/excel/xepivotxml.cxx:713
void WriteGrabBagItemToStream(class XclExpXmlStream &,int,const class com::sun::star::uno::Any &)
int tokenId
- 4008
+ 4009
sc/source/filter/inc/addressconverter.hxx:490
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
int nMaxXlsRow
@@ -2224,12 +2228,12 @@ sc/source/filter/inc/xeformula.hxx:70
5
sc/source/filter/inc/xehelper.hxx:243
class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
- enum XclStrFlags nFlags
- 2
-sc/source/filter/inc/xehelper.hxx:243
- class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
unsigned short nMaxLen
32767
+sc/source/filter/inc/xehelper.hxx:243
+ class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
+ enum XclStrFlags nFlags
+ 2
sc/source/filter/inc/xelink.hxx:174
unsigned short XclExpLinkManager::FindExtSheet(char16_t)
char16_t cCode
@@ -2249,7 +2253,7 @@ sc/source/filter/inc/xerecord.hxx:370
sc/source/filter/inc/xestream.hxx:296
void XclExpXmlStream::WriteAttributes(int,type-parameter-?-? &&,type-parameter-?-? &&...)
###26
- 4070
+ 4071
sc/source/filter/inc/xestring.hxx:51
void XclExpString::XclExpString(enum XclStrFlags,unsigned short)
unsigned short nMaxLen
@@ -2289,7 +2293,7 @@ sc/source/filter/inc/xlformula.hxx:526
sc/source/filter/xcl97/XclExpChangeTrack.cxx:1375
void (anonymous namespace)::EndXmlElement::EndXmlElement(int)
int nElement
- 2620
+ 2621
sc/source/filter/xml/xmlfonte.cxx:41
void (anonymous namespace)::ScXMLFontAutoStylePool_Impl::AddFontItems(const unsigned short *,unsigned char,const class SfxItemPool *,const _Bool)
unsigned char nIdCount
@@ -2328,12 +2332,12 @@ sc/source/ui/inc/content.hxx:142
8
sc/source/ui/inc/datatransformation.hxx:83
void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
- short nCol
- 2
-sc/source/ui/inc/datatransformation.hxx:83
- void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
char16_t cSeparator
44
+sc/source/ui/inc/datatransformation.hxx:83
+ void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
+ short nCol
+ 2
sc/source/ui/inc/datatransformation.hxx:149
void sc::NumberTransformation::NumberTransformation(const class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,const enum sc::NUMBER_TRANSFORM_TYPE,int)
int nPrecision
@@ -2366,11 +2370,11 @@ sc/source/ui/inc/TableFillingAndNavigationTools.hxx:44
void FormulaTemplate::applyRangeList(const class rtl::OUString &,const class ScRangeList &,char16_t)
char16_t cDelimiter
59
-sc/source/ui/inc/tabview.hxx:434
+sc/source/ui/inc/tabview.hxx:425
void ScTabView::MoveCursorPage(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
2
-sc/source/ui/inc/tabview.hxx:436
+sc/source/ui/inc/tabview.hxx:427
void ScTabView::MoveCursorArea(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
3
@@ -2542,7 +2546,7 @@ sd/source/ui/remotecontrol/ImagePreparer.hxx:37
class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &)
unsigned int aHeight
240
-sd/source/ui/sidebar/LayoutMenu.hxx:158
+sd/source/ui/sidebar/LayoutMenu.hxx:154
class SfxRequest sd::sidebar::LayoutMenu::CreateRequest(unsigned short,enum AutoLayout)
unsigned short nSlotId
27014
@@ -2584,6 +2588,10 @@ sdext/source/minimizer/informationdialog.hxx:29
24
sdext/source/minimizer/informationdialog.hxx:32
class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool)
+ int nWidth
+ 25
+sdext/source/minimizer/informationdialog.hxx:32
+ class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool)
int nPosY
5
sdext/source/minimizer/informationdialog.hxx:32
@@ -2594,10 +2602,6 @@ sdext/source/minimizer/informationdialog.hxx:32
class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool)
int nHeight
25
-sdext/source/minimizer/informationdialog.hxx:32
- class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool)
- int nWidth
- 25
sdext/source/minimizer/informationdialog.hxx:35
class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short)
int nXPos
@@ -2636,16 +2640,16 @@ sdext/source/minimizer/optimizerdialogcontrols.cxx:163
97
sdext/source/minimizer/optimizerdialogcontrols.cxx:200
class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short)
+ int nXPos
+ 197
+sdext/source/minimizer/optimizerdialogcontrols.cxx:200
+ class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short)
double fEffectiveMax
100
sdext/source/minimizer/optimizerdialogcontrols.cxx:200
class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short)
int nYPos
46
-sdext/source/minimizer/optimizerdialogcontrols.cxx:200
- class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short)
- int nXPos
- 197
sdext/source/minimizer/optimizerdialogcontrols.cxx:248
class rtl::OUString InsertComboBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,short)
int nXPos
@@ -2658,6 +2662,10 @@ sfx2/source/dialog/filedlghelper.cxx:1923
void SetToken(class rtl::OUString &,int,char16_t,const class rtl::OUString &)
char16_t cTok
32
+sfx2/source/dialog/mgetempl.hxx:83
+ _Bool SfxManageStyleSheetPage::Execute_Impl(unsigned short,const class rtl::OUString &,unsigned short)
+ unsigned short nId
+ 5550
sfx2/source/doc/oleprops.cxx:100
void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &)
int nPropType
@@ -2786,6 +2794,10 @@ svtools/inc/table/tablecontrolinterface.hxx:221
void svt::table::ITableControl::showTracking(const class tools::Rectangle &,const enum ShowTrackFlags)
const enum ShowTrackFlags i_flags
4099
+svtools/source/dialogs/ServerDetailsControls.hxx:73
+ void HostDetailsContainer::HostDetailsContainer(class PlaceEditDialog *,unsigned short,const class rtl::OUString &)
+ unsigned short nPort
+ 80
svtools/source/misc/sampletext.cxx:605
class rtl::OUString makeMinimalTextForScript(enum UScriptCode)
enum UScriptCode eScript
@@ -2802,7 +2814,7 @@ svtools/source/table/tablecontrol_impl.hxx:241
void svt::table::TableControl_Impl::commitAccessibleEvent(const short)
const short i_eventID
9
-svtools/source/uno/unoiface.cxx:41
+svtools/source/uno/unoiface.cxx:38
void lcl_setWinBits(class vcl::Window *,long,_Bool)
long _nBits
68719476736
@@ -3054,15 +3066,15 @@ sw/source/filter/inc/fltshell.hxx:174
const class SfxPoolItem * SwFltControlStack::GetOpenStackAttr(const struct SwPosition &,unsigned short)
unsigned short nWhich
14
-sw/source/filter/ww8/docxattributeoutput.cxx:3649
+sw/source/filter/ww8/docxattributeoutput.cxx:3631
class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
char cFill
48
-sw/source/filter/ww8/docxattributeoutput.cxx:3649
+sw/source/filter/ww8/docxattributeoutput.cxx:3631
class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
int nLen
4
-sw/source/filter/ww8/docxexport.hxx:194
+sw/source/filter/ww8/docxexport.hxx:195
void DocxExport::WriteOutliner(const class OutlinerParaObject &,unsigned char)
unsigned char nTyp
5
@@ -3074,19 +3086,23 @@ sw/source/filter/ww8/writerhelper.hxx:473
const type-parameter-?-? * HasItem(const class std::__debug::map<unsigned short, const class SfxPoolItem *, class sw::util::ItemSort, class std::allocator<struct std::pair<const unsigned short, const class SfxPoolItem *> > > &,unsigned short)
unsigned short eType
52
-sw/source/filter/ww8/wrtww8.hxx:1360
+sw/source/filter/ww8/wrtww8.hxx:1361
void WW8_WrPlcField::WW8_WrPlcField(unsigned short,unsigned char)
unsigned short nStructSz
2
-sw/source/filter/ww8/wrtww8.hxx:1417
+sw/source/filter/ww8/wrtww8.hxx:1418
void SwWW8WrGrf::WritePICBulletFHeader(class SvStream &,const class Graphic &,unsigned short,unsigned short,unsigned short)
unsigned short mm
100
+sw/source/filter/ww8/wrtww8.hxx:1531
+ void SwWW8AttrIter::handleToggleProperty(class SfxItemSet &,const class SwFormatCharFormat *,unsigned short,const class SfxPoolItem *)
+ unsigned short nWhich
+ 15
sw/source/filter/ww8/ww8glsy.hxx:63
void WW8Glossary::WW8Glossary(class tools::SvRef<class SotStorageStream> &,unsigned char,class SotStorage *)
unsigned char nVersion
8
-sw/source/filter/ww8/ww8par.hxx:1593
+sw/source/filter/ww8/ww8par.hxx:1594
class std::unique_ptr<class OutlinerParaObject, struct std::default_delete<class OutlinerParaObject> > SwWW8ImplReader::ImportAsOutliner(class rtl::OUString &,int,int,enum ManTypes)
enum ManTypes eType
4
@@ -3146,6 +3162,10 @@ toolkit/source/awt/vclxspinbutton.cxx:40
void lcl_modifyStyle(class vcl::Window *,long,_Bool)
long _nStyleBits
4096
+toolkit/source/awt/vclxwindows.cxx:6923
+ void lcl_setWinBits(class vcl::Window *,long,_Bool)
+ long _nBits
+ 68719476736
tools/source/stream/strmunx.cxx:104
class ErrCode GetSvError(int)
int nErrno
@@ -3166,11 +3186,27 @@ vcl/backendtest/outputdevice/rectangle.cxx:24
void drawInvertOffset(class OutputDevice &,const class tools::Rectangle &,int,enum InvertFlags)
int nOffset
2
+vcl/inc/driverblocklist.hxx:136
+ unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
+ unsigned int b
+ 20
+vcl/inc/driverblocklist.hxx:136
+ unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
+ unsigned int d
+ 40
+vcl/inc/driverblocklist.hxx:136
+ unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
+ unsigned int a
+ 10
+vcl/inc/driverblocklist.hxx:136
+ unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
+ unsigned int c
+ 30
vcl/inc/fontsubset.hxx:54
void FontSubsetInfo::LoadFont(enum FontType,const unsigned char *,int)
enum FontType eInFontType
32
-vcl/inc/headless/svpgdi.hxx:248
+vcl/inc/headless/svpgdi.hxx:250
void SvpSalGraphics::drawBitmap(const struct SalTwoRect &,const struct BitmapBuffer *,enum _cairo_operator)
enum _cairo_operator eOp
2
@@ -3194,7 +3230,7 @@ vcl/inc/opengl/program.hxx:108
void OpenGLProgram::DrawElements(unsigned int,unsigned int)
unsigned int aMode
4
-vcl/inc/skia/gdiimpl.hxx:201
+vcl/inc/skia/gdiimpl.hxx:202
void SkiaSalGraphicsImpl::drawBitmap(const struct SalTwoRect &,const class SkBitmap &,enum SkBlendMode)
enum SkBlendMode eBlendMode
3
@@ -3294,11 +3330,11 @@ vcl/source/fontsubset/ttcr.hxx:185
void cmapAdd(struct vcl::TrueTypeTable *,unsigned int,unsigned int,unsigned int)
unsigned int id
65536
-vcl/source/gdi/pdfwriter_impl.hxx:993
+vcl/source/gdi/pdfwriter_impl.hxx:995
_Bool vcl::PDFWriterImpl::computeODictionaryValue(const unsigned char *,const unsigned char *,class std::__debug::vector<unsigned char, class std::allocator<unsigned char> > &,int)
int i_nKeyLength
16
-vcl/source/gdi/pdfwriter_impl.hxx:1041
+vcl/source/gdi/pdfwriter_impl.hxx:1043
void vcl::PDFWriterImpl::insertError(enum vcl::PDFWriter::ErrorCode)
enum vcl::PDFWriter::ErrorCode eErr
3
@@ -3314,7 +3350,7 @@ vcl/source/graphic/GraphicObject.cxx:236
void lclImplAdjust(class Animation &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
enum GraphicAdjustmentFlags nAdjustmentFlags
31
-vcl/source/opengl/OpenGLHelper.cxx:170
+vcl/source/opengl/OpenGLHelper.cxx:168
class rtl::OString getHexString(const unsigned char *,unsigned int)
unsigned int nLength
16
@@ -3345,8 +3381,8 @@ writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:175
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:501
void writerfilter::ooxml::OOXMLFastContextHandlerWrapper::addToken(int)
int Element
- 2102390
-writerfilter/source/rtftok/rtfdocumentimpl.hxx:668
+ 2167927
+writerfilter/source/rtftok/rtfdocumentimpl.hxx:669
class tools::SvRef<class writerfilter::rtftok::RTFValue> getNestedSprm(class writerfilter::rtftok::RTFSprms &,unsigned int,unsigned int)
unsigned int nParent
92165
@@ -3427,8 +3463,8 @@ xmloff/source/draw/ximpcustomshape.cxx:553
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
111
xmloff/source/draw/ximpstyl.cxx:136
- void (anonymous namespace)::SdXMLDrawingPageStyleContext::SdXMLDrawingPageStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,unsigned short)
- unsigned short nFamily
+ void (anonymous namespace)::SdXMLDrawingPageStyleContext::SdXMLDrawingPageStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,enum XmlStyleFamily)
+ enum XmlStyleFamily nFamily
305
xmloff/source/forms/elementimport.cxx:1361
void xmloff::(anonymous namespace)::EqualHandle::EqualHandle(int)
diff --git a/include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx b/include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx
index b89a89952465..b06b5f92d71e 100644
--- a/include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx
+++ b/include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx
@@ -94,7 +94,6 @@ namespace drawinglayer
std::shared_ptr<SdrFrameBorderDataVector> maFrameBorders;
double mfMinimalNonZeroBorderWidth;
double mfMinimalNonZeroBorderWidthUsedForDecompose;
- bool mbMergeResult;
bool mbForceToSingleDiscreteUnit;
// local decomposition.
@@ -105,7 +104,6 @@ namespace drawinglayer
public:
SdrFrameBorderPrimitive2D(
std::shared_ptr<SdrFrameBorderDataVector>& rFrameBorders,
- bool bMergeResult,
bool bForceToSingleDiscreteUnit);
// compare operator
@@ -118,7 +116,6 @@ namespace drawinglayer
// data access
const std::shared_ptr<SdrFrameBorderDataVector>& getFrameBorders() const { return maFrameBorders; }
- bool doMergeResult() const { return mbMergeResult; }
bool doForceToSingleDiscreteUnit() const { return mbForceToSingleDiscreteUnit; }
// provide unique ID
diff --git a/svx/source/dialog/framelinkarray.cxx b/svx/source/dialog/framelinkarray.cxx
index 752778bff896..3c4b8d3b3724 100644
--- a/svx/source/dialog/framelinkarray.cxx
+++ b/svx/source/dialog/framelinkarray.cxx
@@ -1257,7 +1257,6 @@ drawinglayer::primitive2d::Primitive2DContainer Array::CreateB2DPrimitiveRange(
drawinglayer::primitive2d::Primitive2DReference(
new drawinglayer::primitive2d::SdrFrameBorderPrimitive2D(
aData,
- true, // try to merge results to have less primitivbes
true))); // force visualization to minimal one discrete unit (pixel)
}
diff --git a/svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx b/svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx
index 8ba6b03bbe1a..c853da76ad11 100644
--- a/svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx
+++ b/svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx
@@ -767,7 +767,6 @@ namespace drawinglayer::primitive2d
? mfMinimalNonZeroBorderWidthUsedForDecompose
: 0.0);
- if(doMergeResult())
{
// decompose all buffered SdrFrameBorderData entries and try to merge them
// to reduce existing number of BorderLinePrimitive2D(s)
@@ -830,29 +829,17 @@ namespace drawinglayer::primitive2d
}
}
}
- else
- {
- // just decompose all buffered SdrFrameBorderData entries, do not try to merge
- for(const auto& rCandidate : *getFrameBorders())
- {
- rCandidate.create2DDecomposition(
- aRetval,
- fMinimalDiscreteUnit);
- }
- }
rContainer.insert(rContainer.end(), aRetval.begin(), aRetval.end());
}
SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(
std::shared_ptr<SdrFrameBorderDataVector>& rFrameBorders,
- bool bMergeResult,
bool bForceToSingleDiscreteUnit)
: BufferedDecompositionPrimitive2D(),
maFrameBorders(std::move(rFrameBorders)),
mfMinimalNonZeroBorderWidth(0.0),
mfMinimalNonZeroBorderWidthUsedForDecompose(0.0),
- mbMergeResult(bMergeResult),
mbForceToSingleDiscreteUnit(bForceToSingleDiscreteUnit)
{
if(getFrameBorders() && doForceToSingleDiscreteUnit())
@@ -874,7 +861,6 @@ namespace drawinglayer::primitive2d
const SdrFrameBorderPrimitive2D& rCompare = static_cast<const SdrFrameBorderPrimitive2D&>(rPrimitive);
return getFrameBorders() == rCompare.getFrameBorders()
- && doMergeResult() == rCompare.doMergeResult()
&& doForceToSingleDiscreteUnit() == rCompare.doForceToSingleDiscreteUnit();
}
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index 0e7969a32b93..eee4a37cb685 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -2611,7 +2611,6 @@ void SwTabFramePainter::PaintLines(OutputDevice& rDev, const SwRect& rRect) cons
drawinglayer::primitive2d::Primitive2DReference(
new drawinglayer::primitive2d::SdrFrameBorderPrimitive2D(
aData,
- true, // try to merge results to have less primitivbes
true))); // force visualization to minimal one discrete unit (pixel)
// paint
mrTabFrame.ProcessPrimitives(aSequence);
@@ -4708,7 +4707,6 @@ namespace drawinglayer::primitive2d
drawinglayer::primitive2d::Primitive2DReference(
new drawinglayer::primitive2d::SdrFrameBorderPrimitive2D(
aData,
- true, // try to merge results to have less primitivbes
true))); // force visualization to minimal one discrete unit (pixel)
}
}
diff --git a/xmloff/source/script/xmlbasicscript.cxx b/xmloff/source/script/xmlbasicscript.cxx
index 2fc2e4e308bf..3c1ea97dbccb 100644
--- a/xmloff/source/script/xmlbasicscript.cxx
+++ b/xmloff/source/script/xmlbasicscript.cxx
@@ -40,9 +40,8 @@ namespace xmloff
{
// BasicElementBase
-BasicElementBase::BasicElementBase(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS)
+BasicElementBase::BasicElementBase(SvXMLImport& rImport)
: SvXMLImportContext(rImport)
- , mnExpectedXMLNS(nExpectedXMLNS)
{
}
@@ -80,9 +79,8 @@ void BasicElementBase::startFastElement(sal_Int32 /*nElement*/,
// BasicLibrariesElement
BasicLibrariesElement::BasicLibrariesElement(SvXMLImport& rImport,
- const css::uno::Reference<css::frame::XModel>& rxModel,
- bool bOasis)
- : BasicElementBase(rImport, bOasis ? XML_NAMESPACE_OOO : XML_NAMESPACE_SCRIPT_OOO)
+ const css::uno::Reference<css::frame::XModel>& rxModel)
+ : BasicElementBase(rImport)
{
// try the XEmbeddedScripts interface
Reference<document::XEmbeddedScripts> xDocumentScripts(rxModel, UNO_QUERY_THROW);
@@ -111,18 +109,18 @@ Reference<XFastContextHandler>
BasicLibrariesElement::createFastChildContext(sal_Int32 nElement,
const Reference<XFastAttributeList>& xAttributes)
{
- if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(mnExpectedXMLNS))
+ if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(XML_NAMESPACE_OOO))
{
throw xml::sax::SAXException("illegal namespace!", Reference<XInterface>(), Any());
}
else if ((nElement & TOKEN_MASK) == XML_LIBRARY_LINKED)
{
- OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(mnExpectedXMLNS) | XML_NAME);
+ OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(XML_NAMESPACE_OOO) | XML_NAME);
OUString aStorageURL = xAttributes->getValue(XML_ELEMENT(XLINK, XML_HREF));
bool bReadOnly = false;
- getBoolAttr(&bReadOnly, NAMESPACE_TOKEN(mnExpectedXMLNS) | XML_READONLY, xAttributes);
+ getBoolAttr(&bReadOnly, NAMESPACE_TOKEN(XML_NAMESPACE_OOO) | XML_READONLY, xAttributes);
if (m_xLibContainer.is())
{
@@ -131,7 +129,7 @@ BasicLibrariesElement::createFastChildContext(sal_Int32 nElement,
Reference<container::XNameAccess> xLib(
m_xLibContainer->createLibraryLink(aName, aStorageURL, bReadOnly));
if (xLib.is())
- return new BasicElementBase(GetImport(), mnExpectedXMLNS);
+ return new BasicElementBase(GetImport());
}
catch (const container::ElementExistException&)
{
@@ -149,10 +147,10 @@ BasicLibrariesElement::createFastChildContext(sal_Int32 nElement,
{
// TODO: create password protected libraries
- OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(mnExpectedXMLNS) | XML_NAME);
+ OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(XML_NAMESPACE_OOO) | XML_NAME);
bool bReadOnly = false;
- getBoolAttr(&bReadOnly, NAMESPACE_TOKEN(mnExpectedXMLNS) | XML_READONLY, xAttributes);
+ getBoolAttr(&bReadOnly, NAMESPACE_TOKEN(XML_NAMESPACE_OOO) | XML_READONLY, xAttributes);
if (m_xLibContainer.is())
{
@@ -170,8 +168,8 @@ BasicLibrariesElement::createFastChildContext(sal_Int32 nElement,
}
if (xLib.is())
- return new BasicEmbeddedLibraryElement(GetImport(), mnExpectedXMLNS,
- m_xLibContainer, aName, bReadOnly);
+ return new BasicEmbeddedLibraryElement(GetImport(), m_xLibContainer, aName,
+ bReadOnly);
}
catch (const lang::IllegalArgumentException&)
{
@@ -192,10 +190,9 @@ BasicLibrariesElement::createFastChildContext(sal_Int32 nElement,
// BasicEmbeddedLibraryElement
BasicEmbeddedLibraryElement::BasicEmbeddedLibraryElement(
- SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
- const Reference<script::XLibraryContainer2>& rxLibContainer, const OUString& rLibName,
- bool bReadOnly)
- : BasicElementBase(rImport, nExpectedXMLNS)
+ SvXMLImport& rImport, const Reference<script::XLibraryContainer2>& rxLibContainer,
+ const OUString& rLibName, bool bReadOnly)
+ : BasicElementBase(rImport)
, m_xLibContainer(rxLibContainer)
, m_aLibName(rLibName)
, m_bReadOnly(bReadOnly)
@@ -214,16 +211,16 @@ BasicEmbeddedLibraryElement::BasicEmbeddedLibraryElement(
Reference<XFastContextHandler> BasicEmbeddedLibraryElement::createFastChildContext(
sal_Int32 nElement, const Reference<XFastAttributeList>& xAttributes)
{
- if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(mnExpectedXMLNS))
+ if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(XML_NAMESPACE_OOO))
{
throw xml::sax::SAXException("illegal namespace!", Reference<XInterface>(), Any());
}
else if ((nElement & TOKEN_MASK) == XML_MODULE)
{
- OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(mnExpectedXMLNS) | XML_NAME);
+ OUString aName = xAttributes->getValue(NAMESPACE_TOKEN(XML_NAMESPACE_OOO) | XML_NAME);
if (m_xLib.is() && !aName.isEmpty())
- return new BasicModuleElement(GetImport(), mnExpectedXMLNS, m_xLib, aName);
+ return new BasicModuleElement(GetImport(), m_xLib, aName);
}
else
{
@@ -241,10 +238,10 @@ void BasicEmbeddedLibraryElement::endFastElement(sal_Int32)
// BasicModuleElement
-BasicModuleElement::BasicModuleElement(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
+BasicModuleElement::BasicModuleElement(SvXMLImport& rImport,
const Reference<container::XNameContainer>& rxLib,
const OUString& rName)
- : BasicElementBase(rImport, nExpectedXMLNS)
+ : BasicElementBase(rImport)
, m_xLib(rxLib)
, m_aName(rName)
{
@@ -256,7 +253,7 @@ BasicModuleElement::createFastChildContext(sal_Int32 nElement,
{
// TODO: <byte-code>
- if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(mnExpectedXMLNS))
+ if ((nElement & NMSP_MASK) != NAMESPACE_TOKEN(XML_NAMESPACE_OOO))
{
throw xml::sax::SAXException("illegal namespace!", Reference<XInterface>(), Any());
}
@@ -267,7 +264,7 @@ BasicModuleElement::createFastChildContext(sal_Int32 nElement,
if (xAttributes.is())
{
if (m_xLib.is() && !m_aName.isEmpty())
- return new BasicSourceCodeElement(GetImport(), mnExpectedXMLNS, m_xLib, m_aName);
+ return new BasicSourceCodeElement(GetImport(), m_xLib, m_aName);
}
}
else
@@ -281,10 +278,10 @@ BasicModuleElement::createFastChildContext(sal_Int32 nElement,
// BasicSourceCodeElement
-BasicSourceCodeElement::BasicSourceCodeElement(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
+BasicSourceCodeElement::BasicSourceCodeElement(SvXMLImport& rImport,
const Reference<container::XNameContainer>& rxLib,
const OUString& rName)
- : BasicElementBase(rImport, nExpectedXMLNS)
+ : BasicElementBase(rImport)
, m_xLib(rxLib)
, m_aName(rName)
{
diff --git a/xmloff/source/script/xmlbasicscript.hxx b/xmloff/source/script/xmlbasicscript.hxx
index 7bf5c2483422..b8a03a5b72a8 100644
--- a/xmloff/source/script/xmlbasicscript.hxx
+++ b/xmloff/source/script/xmlbasicscript.hxx
@@ -32,13 +32,12 @@ namespace xmloff
class BasicElementBase : public SvXMLImportContext
{
protected:
- sal_Int32 mnExpectedXMLNS;
static bool
getBoolAttr(bool* pRet, sal_Int32 nToken,
const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttributes);
public:
- BasicElementBase(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS);
+ BasicElementBase(SvXMLImport& rImport);
virtual void SAL_CALL startFastElement(
sal_Int32 nElement,
@@ -52,7 +51,7 @@ private:
public:
BasicLibrariesElement(SvXMLImport& rImport,
- const css::uno::Reference<css::frame::XModel>& rxModel, bool bOasis);
+ const css::uno::Reference<css::frame::XModel>& rxModel);
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext(
sal_Int32 Element,
@@ -69,7 +68,7 @@ private:
public:
BasicEmbeddedLibraryElement(
- SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
+ SvXMLImport& rImport,
const css::uno::Reference<css::script::XLibraryContainer2>& rxLibContainer,
const OUString& rLibName, bool bReadOnly);
@@ -86,7 +85,7 @@ private:
OUString const m_aName;
public:
- BasicModuleElement(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
+ BasicModuleElement(SvXMLImport& rImport,
const css::uno::Reference<css::container::XNameContainer>& rxLib,
const OUString& rName);
@@ -103,7 +102,7 @@ private:
OUStringBuffer m_aBuffer;
public:
- BasicSourceCodeElement(SvXMLImport& rImport, sal_Int32 nExpectedXMLNS,
+ BasicSourceCodeElement(SvXMLImport& rImport,
const css::uno::Reference<css::container::XNameContainer>& rxLib,
const OUString& rName);
diff --git a/xmloff/source/script/xmlscripti.cxx b/xmloff/source/script/xmlscripti.cxx
index d72eeeee1159..ea502ec94aba 100644
--- a/xmloff/source/script/xmlscripti.cxx
+++ b/xmloff/source/script/xmlscripti.cxx
@@ -79,7 +79,7 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > XMLScriptChildContext:
if ( m_aLanguage == aBasic && nElement == XML_ELEMENT(OOO, XML_LIBRARIES) )
{
- return new xmloff::BasicLibrariesElement( GetImport(), m_xModel,/*bOasis*/ true );
+ return new xmloff::BasicLibrariesElement( GetImport(), m_xModel );
}
}