diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-01 16:13:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-02 14:24:52 +0200 |
commit | 6008cfd6cd661e5fe0b73a43e908d6cac5ffc2d1 (patch) | |
tree | f065616a6d3741fec0ee140df2f1a7fd4bad5580 /include | |
parent | f53470d1e6ab1d29019919c8e37a55f1481d80d3 (diff) |
loplugin:returnconstant in filter
Change-Id: I0ebbd835ddc50e984920950e1559faf163c2c30f
Reviewed-on: https://gerrit.libreoffice.org/58429
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/msdffimp.hxx | 4 | ||||
-rw-r--r-- | include/filter/msfilter/mstoolbar.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx index 164c08406327..79ff6759a168 100644 --- a/include/filter/msfilter/msdffimp.hxx +++ b/include/filter/msfilter/msdffimp.hxx @@ -493,14 +493,14 @@ protected: OUString const& rBaseURL); // the following methods need to be overridden for Excel imports - static bool ProcessClientAnchor( SvStream& rStData, + static void ProcessClientAnchor( SvStream& rStData, sal_uInt32 nDatLen, std::unique_ptr<char[]>& rpBuff, sal_uInt32& rBuffLen ); virtual void ProcessClientAnchor2( SvStream& rStData, DffRecordHeader& rHd, void* pData, DffObjData& ); - static bool ProcessClientData( SvStream& rStData, + static void ProcessClientData( SvStream& rStData, sal_uInt32 nDatLen, std::unique_ptr<char[]>& rpBuff, sal_uInt32& rBuffLen ); diff --git a/include/filter/msfilter/mstoolbar.hxx b/include/filter/msfilter/mstoolbar.hxx index 4b7181be5eca..d29ea04a0023 100644 --- a/include/filter/msfilter/mstoolbar.hxx +++ b/include/filter/msfilter/mstoolbar.hxx @@ -290,7 +290,7 @@ public: #ifdef DEBUG_FILTER_MSTOOLBAR virtual void Print( FILE* ) override; #endif - bool ImportToolBarControl( CustomToolBarImportHelper&, std::vector< css::beans::PropertyValue >&, bool& bBeginGroup, bool bIsMenuBar ); + void ImportToolBarControl( CustomToolBarImportHelper&, std::vector< css::beans::PropertyValue >&, bool& bBeginGroup, bool bIsMenuBar ); TBCGeneralInfo& getGeneralInfo() { return controlGeneralInfo; } TBCMenuSpecific* getMenuSpecific(); }; |