diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-03 10:23:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-03 11:06:54 +0200 |
commit | dafae0fe31353a8092334328d499bc108d39e44c (patch) | |
tree | 7c7d58067996627f163e2f65f7faae86dd91615a /sd/source/ui/app | |
parent | eba883c8a2ce045fc7bd3848d796ca10b7f4ba51 (diff) |
loplugin:constparams in sd
Change-Id: I833c6da99d5ccb8f6a8b5c905bee73b75fde0a89
Reviewed-on: https://gerrit.libreoffice.org/40700
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/app')
-rw-r--r-- | sd/source/ui/app/optsitem.cxx | 10 | ||||
-rw-r--r-- | sd/source/ui/app/sdmod1.cxx | 8 | ||||
-rw-r--r-- | sd/source/ui/app/sdmod2.cxx | 4 |
3 files changed, 11 insertions, 11 deletions
diff --git a/sd/source/ui/app/optsitem.cxx b/sd/source/ui/app/optsitem.cxx index e474494baa87..3e38c6e963a8 100644 --- a/sd/source/ui/app/optsitem.cxx +++ b/sd/source/ui/app/optsitem.cxx @@ -279,7 +279,7 @@ SdOptionsLayoutItem::SdOptionsLayoutItem() { } -SdOptionsLayoutItem::SdOptionsLayoutItem( SdOptions* pOpts, ::sd::FrameView* pView ) +SdOptionsLayoutItem::SdOptionsLayoutItem( SdOptions const * pOpts, ::sd::FrameView const * pView ) : SfxPoolItem ( ATTR_OPTIONS_LAYOUT ) , maOptionsLayout ( false, false ) { @@ -646,7 +646,7 @@ SdOptionsMiscItem::SdOptionsMiscItem() { } -SdOptionsMiscItem::SdOptionsMiscItem( SdOptions* pOpts, ::sd::FrameView* pView ) +SdOptionsMiscItem::SdOptionsMiscItem( SdOptions const * pOpts, ::sd::FrameView const * pView ) : SfxPoolItem ( ATTR_OPTIONS_MISC ) , maOptionsMisc ( false, false ) { @@ -857,7 +857,7 @@ SdOptionsSnapItem::SdOptionsSnapItem() { } -SdOptionsSnapItem::SdOptionsSnapItem( SdOptions* pOpts, ::sd::FrameView* pView ) +SdOptionsSnapItem::SdOptionsSnapItem( SdOptions const * pOpts, ::sd::FrameView const * pView ) : SfxPoolItem ( ATTR_OPTIONS_SNAP ) , maOptionsSnap ( false, false ) { @@ -1097,7 +1097,7 @@ bool SdOptionsGrid::WriteData( Any* pValues ) const |* \************************************************************************/ -SdOptionsGridItem::SdOptionsGridItem( SdOptions* pOpts ) : +SdOptionsGridItem::SdOptionsGridItem( SdOptions const * pOpts ) : SvxGridItem( SID_ATTR_GRID_OPTIONS ) { SetSynchronize( pOpts->IsSynchronize() ); @@ -1314,7 +1314,7 @@ SdOptionsPrintItem::SdOptionsPrintItem() { } -SdOptionsPrintItem::SdOptionsPrintItem( SdOptions* pOpts ) +SdOptionsPrintItem::SdOptionsPrintItem( SdOptions const * pOpts ) : SfxPoolItem ( ATTR_OPTIONS_PRINT ) , maOptionsPrint ( false, false ) { diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx index 368431a5e2f8..6e64d2285a1d 100644 --- a/sd/source/ui/app/sdmod1.cxx +++ b/sd/source/ui/app/sdmod1.cxx @@ -77,7 +77,7 @@ public: OutlineToImpressFinalizer ( ::sd::ViewShellBase& rBase, SdDrawDocument& rDocument, - SvLockBytes& rBytes); + SvLockBytes const & rBytes); void operator() (bool bEventSeen); private: ::sd::ViewShellBase& mrBase; @@ -248,7 +248,7 @@ void SdModule::Execute(SfxRequest& rReq) } } -bool SdModule::OutlineToImpress(SfxRequest& rRequest) +bool SdModule::OutlineToImpress(SfxRequest const & rRequest) { const SfxItemSet* pSet = rRequest.GetArgs(); @@ -450,7 +450,7 @@ SfxFrame* SdModule::CreateFromTemplate( const OUString& rTemplatePath, const Ref } -SfxFrame* SdModule::ExecuteNewDocument( SfxRequest& rReq ) +SfxFrame* SdModule::ExecuteNewDocument( SfxRequest const & rReq ) { SfxFrame* pFrame = nullptr; if ( SvtModuleOptions().IsImpress() ) @@ -532,7 +532,7 @@ namespace { OutlineToImpressFinalizer::OutlineToImpressFinalizer ( ::sd::ViewShellBase& rBase, SdDrawDocument& rDocument, - SvLockBytes& rBytes) + SvLockBytes const & rBytes) : mrBase(rBase), mrDocument(rDocument), mpStream() diff --git a/sd/source/ui/app/sdmod2.cxx b/sd/source/ui/app/sdmod2.cxx index 5a8b19bf842d..6a2cf38a53c8 100644 --- a/sd/source/ui/app/sdmod2.cxx +++ b/sd/source/ui/app/sdmod2.cxx @@ -71,7 +71,7 @@ /** retrieves the page that is currently painted. This will only be the master page if the current drawn view only shows the master page*/ -static SdPage* GetCurrentPage( sd::ViewShell* pViewSh, EditFieldInfo* pInfo, bool& bMasterView ) +static SdPage* GetCurrentPage( sd::ViewShell const * pViewSh, EditFieldInfo const * pInfo, bool& bMasterView ) { if( !pInfo ) return nullptr; @@ -91,7 +91,7 @@ static SdPage* GetCurrentPage( sd::ViewShell* pViewSh, EditFieldInfo* pInfo, boo // first try to check if we are inside the outline view sd::OutlineView* pSdView = nullptr; if( dynamic_cast<const sd::OutlineViewShell* >(pViewSh) != nullptr ) - pSdView = static_cast<sd::OutlineView*> (static_cast<sd::OutlineViewShell*>(pViewSh)->GetView()); + pSdView = static_cast<sd::OutlineView*> (static_cast<sd::OutlineViewShell const *>(pViewSh)->GetView()); if (pSdView != nullptr && (pOutliner == &pSdView->GetOutliner())) { |