[Libreoffice-commits] core.git: 3 commits - compilerplugins/clang include/sfx2 include/svx include/vcl sfx2/source svx/source sw/inc sw/source

Noel Grandin noel.grandin at collabora.co.uk
Fri Apr 20 07:00:06 UTC 2018


 compilerplugins/clang/singlevalfields.results    |   72 ++++++++++-------------
 compilerplugins/clang/unnecessaryvirtual.results |   50 ++-------------
 include/sfx2/charwin.hxx                         |    1 
 include/svx/svdograf.hxx                         |    1 
 include/svx/svdpage.hxx                          |    2 
 include/vcl/GraphicObject.hxx                    |    4 -
 sfx2/source/control/charwin.cxx                  |    3 
 svx/source/svdraw/svdograf.cxx                   |    7 --
 sw/inc/tblenum.hxx                               |    1 
 sw/source/core/doc/tblrwcl.cxx                   |    7 --
 sw/source/core/docnode/ndtbl.cxx                 |    1 
 sw/source/core/frmedt/fetab.cxx                  |    4 -
 sw/source/core/undo/untbl.cxx                    |    1 
 13 files changed, 46 insertions(+), 108 deletions(-)

New commits:
commit a0fd9001801bf29ac4154edfd914dc930ffecd72
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Thu Apr 19 16:20:09 2018 +0200

    loplugin:unusedenumconstants
    
    TableChgWidthHeightType::RowTop is dead with
    
       commit 2d5ce0e1b233c83f91481cd6b9306ac8de7f5ff8
       Date:   Mon Mar 26 13:08:54 2018 +0200
       tdf#116452 Remove "3 seconds to add/delete col/row" functions
    
    Change-Id: I2fa82822b70457673419bd90ae82016c796acaa8
    Reviewed-on: https://gerrit.libreoffice.org/53167
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/include/vcl/GraphicObject.hxx b/include/vcl/GraphicObject.hxx
index 057f232ea4ef..140ea7402540 100644
--- a/include/vcl/GraphicObject.hxx
+++ b/include/vcl/GraphicObject.hxx
@@ -34,13 +34,11 @@ enum class GraphicManagerDrawFlags
     CACHED                  = 0x01,
     SMOOTHSCALE             = 0x02,
     USE_DRAWMODE_SETTINGS   = 0x04,
-    SUBSTITUTE              = 0x08,
-    NO_SUBSTITUTE           = 0x10,
     STANDARD                = (CACHED|SMOOTHSCALE),
 };
 namespace o3tl
 {
-    template<> struct typed_flags<GraphicManagerDrawFlags> : is_typed_flags<GraphicManagerDrawFlags, 0x1f> {};
+    template<> struct typed_flags<GraphicManagerDrawFlags> : is_typed_flags<GraphicManagerDrawFlags, 0x07> {};
 }
 
 // AutoSwap defines
diff --git a/sw/inc/tblenum.hxx b/sw/inc/tblenum.hxx
index bf9570f17fec..dd0504f80016 100644
--- a/sw/inc/tblenum.hxx
+++ b/sw/inc/tblenum.hxx
@@ -26,7 +26,6 @@ enum class TableChgWidthHeightType : sal_uInt16
 {
     ColLeft      = 0,
     ColRight     = 1,
-    RowTop       = 2,
     RowBottom    = 3,
     CellLeft     = 4,
     CellRight    = 5,
diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx
index 5544487788a2..d1dd34c0a5da 100644
--- a/sw/source/core/doc/tblrwcl.cxx
+++ b/sw/source/core/doc/tblrwcl.cxx
@@ -201,8 +201,7 @@ struct CR_SetLineHeight
         : pTableNd( pTNd ), pUndo( nullptr ),
         nMaxSpace( 0 ), nMaxHeight( 0 )
     {
-        bTop = TableChgWidthHeightType::RowTop == extractPosition( eType ) ||
-               TableChgWidthHeightType::CellTop == extractPosition( eType );
+        bTop = TableChgWidthHeightType::CellTop == extractPosition( eType );
         bBigger = bool(eType & TableChgWidthHeightType::BiggerMode );
         if( eType & TableChgWidthHeightType::InsertDeleteMode )
             bBigger = !bBigger;
@@ -4118,8 +4117,7 @@ bool SwTable::SetRowHeight( SwTableBox& rCurrentBox, TableChgWidthHeightType eTy
     SwTableSortBoxes aTmpLst;       // for Undo
     bool bBigger,
         bRet = false,
-        bTop = TableChgWidthHeightType::RowTop == extractPosition( eType ) ||
-               TableChgWidthHeightType::CellTop == extractPosition( eType ),
+        bTop = TableChgWidthHeightType::CellTop == extractPosition( eType ),
         bInsDel = bool(eType & TableChgWidthHeightType::InsertDeleteMode );
     sal_uInt16 nBaseLinePos = GetTabLines().GetPos( pBaseLine );
     sal_uLong nBoxIdx = rCurrentBox.GetSttIdx();
@@ -4150,7 +4148,6 @@ bool SwTable::SetRowHeight( SwTableBox& rCurrentBox, TableChgWidthHeightType eTy
         pBaseLine = pLine;
         SAL_FALLTHROUGH;
 
-    case TableChgWidthHeightType::RowTop:
     case TableChgWidthHeightType::RowBottom:
         {
             if( bInsDel && !bBigger )       // By how much does it get higher?
diff --git a/sw/source/core/docnode/ndtbl.cxx b/sw/source/core/docnode/ndtbl.cxx
index 4fc498d41cb8..3edfcdf51310 100644
--- a/sw/source/core/docnode/ndtbl.cxx
+++ b/sw/source/core/docnode/ndtbl.cxx
@@ -3968,7 +3968,6 @@ bool SwDoc::SetColRowWidthHeight( SwTableBox& rCurrentBox, TableChgWidthHeightTy
                                 bUndo ? &pUndo : nullptr );
         }
         break;
-    case TableChgWidthHeightType::RowTop:
     case TableChgWidthHeightType::RowBottom:
     case TableChgWidthHeightType::CellTop:
     case TableChgWidthHeightType::CellBottom:
diff --git a/sw/source/core/frmedt/fetab.cxx b/sw/source/core/frmedt/fetab.cxx
index 4f4f64453f93..0e04ad50b980 100644
--- a/sw/source/core/frmedt/fetab.cxx
+++ b/sw/source/core/frmedt/fetab.cxx
@@ -2212,9 +2212,6 @@ void SwFEShell::SetColRowWidthHeight( TableChgWidthHeightType eType, sal_uInt16
         // deleting the cells.
         switch( eTypePos )
         {
-        case TableChgWidthHeightType::RowTop:
-            lcl_GoTableRow( this, true );
-            break;
         case TableChgWidthHeightType::RowBottom:
             lcl_GoTableRow( this, false );
             break;
@@ -2256,7 +2253,6 @@ void SwFEShell::SetColRowWidthHeight( TableChgWidthHeightType eType, sal_uInt16
                 break;
 
         case TableChgWidthHeightType::CellTop:
-        case TableChgWidthHeightType::RowTop:
                 lcl_GoTableRow( this, true );
                 break;
 
diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index 511cf51986c6..a3fc1152d73e 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1891,7 +1891,6 @@ void SwUndoTableNdsChg::RedoImpl(::sw::UndoRedoContext & rContext)
                  rTable.SetColWidth( *pBox, nSetColType, nAbsDiff,
                                     nRelDiff, &pUndo );
                 break;
-            case TableChgWidthHeightType::RowTop:
             case TableChgWidthHeightType::RowBottom:
             case TableChgWidthHeightType::CellTop:
             case TableChgWidthHeightType::CellBottom:
commit 1055a94124a82b236230d6f97c1c9f0db07deba3
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Thu Apr 19 15:43:51 2018 +0200

    loplugin:singlevalfields
    
    Change-Id: I8f3bad622daa3ce118d20c5be12294a3fab85c2a
    Reviewed-on: https://gerrit.libreoffice.org/53166
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/compilerplugins/clang/singlevalfields.results b/compilerplugins/clang/singlevalfields.results
index 03a32af65333..74a90ed39e47 100644
--- a/compilerplugins/clang/singlevalfields.results
+++ b/compilerplugins/clang/singlevalfields.results
@@ -19,31 +19,37 @@ include/filter/msfilter/dffpropset.hxx:35
 include/o3tl/vector_pool.hxx:93
     o3tl::detail::struct_from_value::type nextFree
     -1
+include/sfx2/charwin.hxx:105
+    SvxCharViewControl maHasInsert
+    1
 include/svtools/svparser.hxx:74
     SvParser::TokenStackType nTokenValue
     0
 include/svtools/svparser.hxx:75
     SvParser::TokenStackType bTokenHasValue
     0
-include/vcl/filter/pdfdocument.hxx:173
+include/svx/svdograf.hxx:107
+    SdrGrafObj mbIsPreview
+    0
+include/vcl/filter/pdfdocument.hxx:174
     vcl::filter::PDFNameElement m_nLength
     0
-include/vcl/pdfwriter.hxx:549
+include/vcl/pdfwriter.hxx:548
     vcl::PDFWriter::PDFSignContext m_pDerEncoded
     0
-include/vcl/pdfwriter.hxx:551
+include/vcl/pdfwriter.hxx:550
     vcl::PDFWriter::PDFSignContext m_nDerEncoded
     0
-include/vcl/pdfwriter.hxx:553
+include/vcl/pdfwriter.hxx:552
     vcl::PDFWriter::PDFSignContext m_pByteRange1
     0
-include/vcl/pdfwriter.hxx:555
+include/vcl/pdfwriter.hxx:554
     vcl::PDFWriter::PDFSignContext m_nByteRange1
     0
-include/vcl/pdfwriter.hxx:557
+include/vcl/pdfwriter.hxx:556
     vcl::PDFWriter::PDFSignContext m_pByteRange2
     0
-include/vcl/pdfwriter.hxx:559
+include/vcl/pdfwriter.hxx:558
     vcl::PDFWriter::PDFSignContext m_nByteRange2
     0
 libreofficekit/source/gtk/lokdocview.cxx:84
@@ -67,22 +73,16 @@ sc/inc/compiler.hxx:108
 sc/qa/unit/ucalc.hxx:41
     Test::RangeNameDef mnIndex
     1
-sc/source/filter/inc/xcl97rec.hxx:272
-    ExcBof8_Base nLowestBiffVer
-    6
-sc/source/filter/inc/xechart.hxx:859
-    XclExpChDropBar mnBarDist
-    100
 sd/inc/sdpptwrp.hxx:42
     SdPPTFilter pBas
     0
-sd/source/filter/html/htmlex.hxx:114
+sd/source/filter/html/htmlex.hxx:112
     HtmlExport mbAutoSlide
     1
-sfx2/source/appl/lnkbase2.cxx:76
+sfx2/source/appl/lnkbase2.cxx:77
     sfx2::ImplBaseLinkData::tDDEType pItem
     0
-sfx2/source/appl/lnkbase2.cxx:81
+sfx2/source/appl/lnkbase2.cxx:82
     sfx2::ImplBaseLinkData::(anonymous) DDEType
     0
 sfx2/source/doc/doctemplates.cxx:136
@@ -103,7 +103,7 @@ soltools/mkdepend/def.h:132
 stoc/source/inspect/introspection.cxx:1530
     (anonymous namespace)::Cache::Data hits
     1
-sw/inc/hints.hxx:189
+sw/inc/hints.hxx:188
     SwAttrSetChg m_bDelSet
     0
 sw/inc/pagepreviewlayout.hxx:49
@@ -112,9 +112,6 @@ sw/inc/pagepreviewlayout.hxx:49
 sw/source/core/inc/frmtool.hxx:260
     SwBorderAttrs m_bBorderDist
     1
-sw/source/core/inc/UndoNumbering.hxx:33
-    SwUndoInsNum nSttSet
-    18446744073709551615
 sw/source/core/inc/UndoSort.hxx:38
     SwSortUndoElement::(anonymous union)::(anonymous) nKenn
     4294967295
@@ -127,19 +124,16 @@ sw/source/filter/html/htmlcss1.cxx:78
 sw/source/filter/html/htmlcss1.cxx:79
     SwCSS1ItemIds nFormatKeep
     109
-sw/source/filter/html/svxcss1.hxx:200
+sw/source/filter/html/svxcss1.hxx:201
     SvxCSS1Parser nMinFixLineSpace
     141
-sw/source/filter/html/svxcss1.hxx:203
-    SvxCSS1Parser nScriptFlags
-    7
 sw/source/filter/inc/rtf.hxx:30
     RTFSurround::(anonymous union)::(anonymous) nJunk
     0
-sw/source/filter/ww8/ww8par.hxx:651
+sw/source/filter/ww8/ww8par.hxx:655
     WW8FormulaControl mfUnknown
     0
-sw/source/filter/ww8/ww8par.hxx:660
+sw/source/filter/ww8/ww8par.hxx:664
     WW8FormulaControl mhpsCheckBox
     20
 vcl/inc/salprn.hxx:41
@@ -175,43 +169,43 @@ vcl/source/filter/jpeg/transupp.h:131
 vcl/source/font/font.cxx:539
     (anonymous namespace)::WeightSearchEntry weight
     5
-vcl/source/gdi/dibtools.cxx:49
+vcl/source/gdi/dibtools.cxx:50
     (anonymous namespace)::CIEXYZ aXyzX
     0
-vcl/source/gdi/dibtools.cxx:50
+vcl/source/gdi/dibtools.cxx:51
     (anonymous namespace)::CIEXYZ aXyzY
     0
-vcl/source/gdi/dibtools.cxx:51
+vcl/source/gdi/dibtools.cxx:52
     (anonymous namespace)::CIEXYZ aXyzZ
     0
-vcl/source/gdi/dibtools.cxx:104
+vcl/source/gdi/dibtools.cxx:105
     (anonymous namespace)::DIBV5Header nV5RedMask
     0
-vcl/source/gdi/dibtools.cxx:105
+vcl/source/gdi/dibtools.cxx:106
     (anonymous namespace)::DIBV5Header nV5GreenMask
     0
-vcl/source/gdi/dibtools.cxx:106
+vcl/source/gdi/dibtools.cxx:107
     (anonymous namespace)::DIBV5Header nV5BlueMask
     0
-vcl/source/gdi/dibtools.cxx:107
+vcl/source/gdi/dibtools.cxx:108
     (anonymous namespace)::DIBV5Header nV5AlphaMask
     0
-vcl/source/gdi/dibtools.cxx:110
+vcl/source/gdi/dibtools.cxx:111
     (anonymous namespace)::DIBV5Header nV5GammaRed
     0
-vcl/source/gdi/dibtools.cxx:111
+vcl/source/gdi/dibtools.cxx:112
     (anonymous namespace)::DIBV5Header nV5GammaGreen
     0
-vcl/source/gdi/dibtools.cxx:112
+vcl/source/gdi/dibtools.cxx:113
     (anonymous namespace)::DIBV5Header nV5GammaBlue
     0
-vcl/source/gdi/dibtools.cxx:114
+vcl/source/gdi/dibtools.cxx:115
     (anonymous namespace)::DIBV5Header nV5ProfileData
     0
-vcl/source/gdi/dibtools.cxx:115
+vcl/source/gdi/dibtools.cxx:116
     (anonymous namespace)::DIBV5Header nV5ProfileSize
     0
-vcl/source/gdi/dibtools.cxx:116
+vcl/source/gdi/dibtools.cxx:117
     (anonymous namespace)::DIBV5Header nV5Reserved
     0
 vcl/source/gdi/pdfwriter_impl.hxx:698
diff --git a/include/sfx2/charwin.hxx b/include/sfx2/charwin.hxx
index 0db93a2f1302..88335d00a1a8 100644
--- a/include/sfx2/charwin.hxx
+++ b/include/sfx2/charwin.hxx
@@ -102,7 +102,6 @@ private:
     long            mnY;
     Point           maPosition;
     vcl::Font       maFont;
-    bool            maHasInsert;
 
     Link<SvxCharViewControl*, void> maMouseClickHdl;
 };
diff --git a/include/svx/svdograf.hxx b/include/svx/svdograf.hxx
index d11a289060f8..f3b0b1946564 100644
--- a/include/svx/svdograf.hxx
+++ b/include/svx/svdograf.hxx
@@ -104,7 +104,6 @@ private:
 
     // #i25616#
     bool mbInsidePaint:1;
-    bool mbIsPreview:1;
 
     bool mbIsSignatureLine;
     OUString maSignatureLineId;
diff --git a/sfx2/source/control/charwin.cxx b/sfx2/source/control/charwin.cxx
index 971397c04322..d2a723938a13 100644
--- a/sfx2/source/control/charwin.cxx
+++ b/sfx2/source/control/charwin.cxx
@@ -262,7 +262,6 @@ SvxCharViewControl::SvxCharViewControl(vcl::Window* pParent)
     : Control(pParent, WB_TABSTOP | WB_BORDER)
     , mnY(0)
     , maPosition(0,0)
-    , maHasInsert(true)
 {
 }
 
@@ -274,7 +273,7 @@ void SvxCharViewControl::MouseButtonDown( const MouseEvent& rMEvt )
 
     if ( rMEvt.IsLeft() )
     {
-        if ( !(rMEvt.GetClicks() % 2) && maHasInsert )
+        if ( !(rMEvt.GetClicks() % 2) )
         {
             InsertCharToDoc();
         }
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx
index 930569cc7832..018aef7e018b 100644
--- a/svx/source/svdraw/svdograf.cxx
+++ b/svx/source/svdraw/svdograf.cxx
@@ -344,7 +344,6 @@ SdrGrafObj::SdrGrafObj(SdrModel& rSdrModel)
     // #i25616#
     mbLineIsOutsideGeometry = true;
     mbInsidePaint = false;
-    mbIsPreview = false;
 
     // #i25616#
     mbSupportTextIndentingOnLineWidthChange = false;
@@ -372,7 +371,6 @@ SdrGrafObj::SdrGrafObj(
     // #i25616#
     mbLineIsOutsideGeometry = true;
     mbInsidePaint = false;
-    mbIsPreview = false;
 
     // #i25616#
     mbSupportTextIndentingOnLineWidthChange = false;
@@ -399,7 +397,6 @@ SdrGrafObj::SdrGrafObj(
     // #i25616#
     mbLineIsOutsideGeometry = true;
     mbInsidePaint = false;
-    mbIsPreview = false;
 
     // #i25616#
     mbSupportTextIndentingOnLineWidthChange = false;
@@ -415,7 +412,6 @@ void SdrGrafObj::SetGraphicObject(const GraphicObject& rGraphicObject)
     mpGraphicObject.reset(new GraphicObject(rGraphicObject));
     mpReplacementGraphicObject.reset();
     mpGraphicObject->SetUserData();
-    mbIsPreview = false;
     SetChanged();
     BroadcastObjectChange();
     onGraphicChanged();
@@ -454,7 +450,6 @@ void SdrGrafObj::NbcSetGraphic(const Graphic& rGraphic)
     mpGraphicObject->SetGraphic(rGraphic);
     mpReplacementGraphicObject.reset();
     mpGraphicObject->SetUserData();
-    mbIsPreview = false;
     onGraphicChanged();
 }
 
@@ -568,8 +563,6 @@ const Size& SdrGrafObj::GetGrafPrefSize() const
 
 void SdrGrafObj::SetGrafStreamURL( const OUString& rGraphicStreamURL )
 {
-    mbIsPreview = false;
-
     if( rGraphicStreamURL.isEmpty() )
     {
         mpGraphicObject->SetUserData();
commit c9faab624519a1ecc35dcfe4126886b1c3ceddc6
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Thu Apr 19 15:05:22 2018 +0200

    loplugin:unnecessaryvirtual
    
    Change-Id: Ieecb426f4f839bb1f94e58e45a99643a74ec3009
    Reviewed-on: https://gerrit.libreoffice.org/53165
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/compilerplugins/clang/unnecessaryvirtual.results b/compilerplugins/clang/unnecessaryvirtual.results
index e2ccd60c5a6b..8e8c84672159 100644
--- a/compilerplugins/clang/unnecessaryvirtual.results
+++ b/compilerplugins/clang/unnecessaryvirtual.results
@@ -1,7 +1,3 @@
-accessibility/inc/standard/accessiblemenuitemcomponent.hxx:41
-    void OAccessibleMenuItemComponent::Select()
-accessibility/inc/standard/accessiblemenuitemcomponent.hxx:42
-    void OAccessibleMenuItemComponent::DeSelect()
 basic/source/comp/codegen.cxx:464
     void OffSetAccumulator::start(const unsigned char *,)
 basic/source/comp/codegen.cxx:465
@@ -28,28 +24,6 @@ basic/source/comp/codegen.cxx:529
     void BufferTransformer::end()
 chart2/source/inc/WeakListenerAdapter.hxx:58
     void chart::WeakListenerAdapter::disposing(const struct com::sun::star::lang::EventObject &,)
-chart2/source/view/axes/Tickmarks.hxx:133
-    void chart::TickFactory2D::updateScreenValues(class std::__debug::vector<class std::__debug::vector<struct chart::TickInfo, class std::allocator<struct chart::TickInfo> >, class std::allocator<class std::__debug::vector<struct chart::TickInfo, class std::allocator<struct chart::TickInfo> > > > &,)const
-dbaccess/source/core/api/CRowSetDataColumn.hxx:73
-    void dbaccess::ORowSetDataColumn::fireValueChange(const class connectivity::ORowSetValue &,)
-dbaccess/source/core/api/KeySet.hxx:190
-    _Bool dbaccess::OKeySet::isBeforeFirst()
-dbaccess/source/core/api/KeySet.hxx:191
-    _Bool dbaccess::OKeySet::isAfterLast()
-dbaccess/source/core/api/RowSet.hxx:238
-    void dbaccess::ORowSet::notifyAllListeners(class osl::ResettableGuard<class osl::Mutex> &,)
-dbaccess/source/core/api/StaticSet.hxx:56
-    _Bool dbaccess::OStaticSet::isBeforeFirst()
-dbaccess/source/core/api/StaticSet.hxx:57
-    _Bool dbaccess::OStaticSet::isAfterLast()
-dbaccess/source/core/recovery/storagexmlstream.hxx:46
-    void dbaccess::StorageXMLOutputStream::close()
-dbaccess/source/ui/inc/RTableConnectionData.hxx:49
-    class rtl::Reference<class dbaui::OConnectionLineData> dbaui::ORelationTableConnectionData::CreateLineDataObj()
-dbaccess/source/ui/inc/unodatbr.hxx:208
-    void dbaui::SbaTableQueryBrowser::InitializeGridModel(const class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &,)
-dbaccess/source/ui/querydesign/QTableConnectionData.hxx:36
-    class rtl::Reference<class dbaui::OConnectionLineData> dbaui::OQueryTableConnectionData::CreateLineDataObj()
 extensions/source/dbpilots/unoautopilot.hxx:98
     class cppu::IPropertyArrayHelper * dbp::OUnoAutoPilot::createArrayHelper()const
 extensions/source/propctrlr/commoncontrol.hxx:127
@@ -82,13 +56,9 @@ forms/source/xforms/namedcollection.hxx:106
     class com::sun::star::uno::Sequence<class rtl::OUString> NamedCollection::getElementNames()
 forms/source/xforms/namedcollection.hxx:111
     unsigned char NamedCollection::hasByName(const class rtl::OUString &,)
-hwpfilter/source/hbox.h:159
-    class std::basic_string<unsigned short, struct std::char_traits<unsigned short>, class std::allocator<unsigned short> > DateCode::GetString()
-hwpfilter/source/hbox.h:834
-    class std::basic_string<unsigned short, struct std::char_traits<unsigned short>, class std::allocator<unsigned short> > MailMerge::GetString()
 include/basegfx/utils/unopolypolygon.hxx:97
     void basegfx::unotools::UnoPolyPolygon::modifying()const
-include/comphelper/interaction.hxx:55
+include/comphelper/interaction.hxx:54
     void comphelper::OInteraction::select()
 include/comphelper/proparrhlp.hxx:87
     class cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper()const
@@ -148,9 +118,11 @@ include/svl/svdde.hxx:251
     _Bool DdeTopic::StartAdviseLoop()
 include/svl/svdde.hxx:307
     void DdeService::~DdeService()
-include/svtools/treelistbox.hxx:723
+include/svtools/treelistbox.hxx:722
     void SvTreeListBox::SelectAll(_Bool,_Bool,)
-include/toolkit/controls/geometrycontrolmodel.hxx:192
+include/svx/svdpage.hxx:94
+    class SdrObjList * SdrObjList::CloneSdrObjList(class SdrModel *,)const
+include/toolkit/controls/geometrycontrolmodel.hxx:191
     void OGeometryControlModel::fillProperties(class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,)const
 include/vbahelper/vbacollectionimpl.hxx:290
     int ScVbaCollectionBase::getCount()
@@ -174,19 +146,13 @@ include/vbahelper/vbareturntypes.hxx:40
     void ooo::vba::DefaultReturnHelper::setValue(type-parameter-0-0,)
 include/vbahelper/vbareturntypes.hxx:41
     type-parameter-0-0 ooo::vba::DefaultReturnHelper::getValue()
-include/vcl/weld.hxx:219
+include/vcl/weld.hxx:267
     void weld::TreeView::append_text(const class rtl::OUString &,)
-include/vcl/weld.hxx:222
+include/vcl/weld.hxx:270
     void weld::TreeView::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,)
 sc/source/core/opencl/formulagroupcl.cxx:870
     void sc::opencl::DynamicKernelMixedArgument::GenNumDeclRef(class std::basic_stringstream<char> &,)const
-sc/source/core/opencl/formulagroupcl.cxx:929
-    class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool,)const
-sc/source/core/opencl/formulagroupcl.cxx:952
-    unsigned long sc::opencl::DynamicKernelSlidingArgument::GenReductionLoopHeader(class std::basic_stringstream<char> &,_Bool &,)
-sc/source/core/opencl/formulagroupcl.cxx:1190
-    unsigned long sc::opencl::ParallelReductionVectorRef::GenReductionLoopHeader(class std::basic_stringstream<char> &,int,_Bool &,)
-sc/source/ui/inc/anyrefdg.hxx:220
+sc/source/ui/inc/anyrefdg.hxx:219
     void ScRefHdlrImpl::dispose()
 sc/source/ui/vba/vbacondition.hxx:39
     class rtl::OUString ScVbaCondition::Formula1()
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index 3e8fcb54f880..a6ab2f97229f 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -91,7 +91,7 @@ private:
 public:
     SdrObjList(SdrPage* pNewPage = nullptr);
     virtual ~SdrObjList();
-    virtual SdrObjList* CloneSdrObjList(SdrModel* pNewModel = nullptr) const;
+    SdrObjList* CloneSdrObjList(SdrModel* pNewModel = nullptr) const;
 
     void CopyObjects(const SdrObjList& rSrcList, SdrModel* pNewModel = nullptr);
     /// clean up everything (without Undo)


More information about the Libreoffice-commits mailing list