diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-18 08:09:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-18 11:32:16 +0200 |
commit | f4c59e5364e449bd8ce5420ff57331677ff859b9 (patch) | |
tree | 563d04a3dc7724f0597b32022e31a6ca5074aac3 /sd/inc | |
parent | cd6d590e2e687c3852a4e7bda9571d499b86d8d4 (diff) |
loplugin:constantparam in sd
Change-Id: Idad86a005a7df1af38722fa0e909ed9b6e0858fa
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/drawdoc.hxx | 2 | ||||
-rw-r--r-- | sd/inc/sdcgmfilter.hxx | 3 | ||||
-rw-r--r-- | sd/inc/sdhtmlfilter.hxx | 3 | ||||
-rw-r--r-- | sd/inc/sdpptwrp.hxx | 3 | ||||
-rw-r--r-- | sd/inc/sdxmlwrp.hxx | 1 |
5 files changed, 4 insertions, 8 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index af5798889d37..a2434fa5057b 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -264,7 +264,7 @@ public: SAL_DLLPRIVATE void InsertBookmark(const std::vector<OUString> &rBookmarkList, std::vector<OUString> &rExchangeList, bool bLink, bool bReplace, sal_uInt16 nPgPos, bool bNoDialogs, - ::sd::DrawDocShell* pBookmarkDocSh, bool bCopy, + ::sd::DrawDocShell* pBookmarkDocSh, Point* pObjPos); SAL_DLLPRIVATE bool IsStartWithPresentation() const { return mbStartWithPresentation;} diff --git a/sd/inc/sdcgmfilter.hxx b/sd/inc/sdcgmfilter.hxx index 7f11bbf535d7..550819b940df 100644 --- a/sd/inc/sdcgmfilter.hxx +++ b/sd/inc/sdcgmfilter.hxx @@ -28,8 +28,7 @@ class SdCGMFilter : public SdFilter public: SdCGMFilter ( SfxMedium& rMedium, - ::sd::DrawDocShell& rDocShell, - bool bShowProgress ); + ::sd::DrawDocShell& rDocShell ); virtual ~SdCGMFilter(); bool Import(); diff --git a/sd/inc/sdhtmlfilter.hxx b/sd/inc/sdhtmlfilter.hxx index e5482844bbfa..e696c8a786a3 100644 --- a/sd/inc/sdhtmlfilter.hxx +++ b/sd/inc/sdhtmlfilter.hxx @@ -29,8 +29,7 @@ class SdHTMLFilter public: SdHTMLFilter ( SfxMedium& rMedium, - ::sd::DrawDocShell& rDocShell, - bool bShowProgress); + ::sd::DrawDocShell& rDocShell); virtual ~SdHTMLFilter(); virtual bool Export() override; diff --git a/sd/inc/sdpptwrp.hxx b/sd/inc/sdpptwrp.hxx index f333ced302d8..3f74e7c11b2f 100644 --- a/sd/inc/sdpptwrp.hxx +++ b/sd/inc/sdpptwrp.hxx @@ -28,8 +28,7 @@ class SdPPTFilter : public SdFilter public: SdPPTFilter ( SfxMedium& rMedium, - ::sd::DrawDocShell& rDocShell, - bool bShowProgress); + ::sd::DrawDocShell& rDocShell); virtual ~SdPPTFilter(); /// these methods are necessary for the export to PowerPoint diff --git a/sd/inc/sdxmlwrp.hxx b/sd/inc/sdxmlwrp.hxx index 5aafa00c98c0..f3488f7d8c93 100644 --- a/sd/inc/sdxmlwrp.hxx +++ b/sd/inc/sdxmlwrp.hxx @@ -36,7 +36,6 @@ public: SdXMLFilter( SfxMedium& rMedium, ::sd::DrawDocShell& rDocShell, - bool bShowProgress, SdXMLFilterMode eFilterMode = SDXMLMODE_Normal, sal_uLong nStoreVer = SOFFICE_FILEFORMAT_8 ); virtual ~SdXMLFilter(); |