summaryrefslogtreecommitdiff
path: root/sfx2/source
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/appl/appbas.cxx2
-rw-r--r--sfx2/source/appl/helpinterceptor.cxx2
-rw-r--r--sfx2/source/appl/helpinterceptor.hxx2
-rw-r--r--sfx2/source/appl/impldde.cxx4
-rw-r--r--sfx2/source/dialog/recfloat.cxx2
-rw-r--r--sfx2/source/doc/sfxbasemodel.cxx4
-rw-r--r--sfx2/source/inc/docundomanager.hxx2
-rw-r--r--sfx2/source/inc/recfloat.hxx2
-rw-r--r--sfx2/source/view/frame.cxx2
9 files changed, 11 insertions, 11 deletions
diff --git a/sfx2/source/appl/appbas.cxx b/sfx2/source/appl/appbas.cxx
index c9184bbb6fd3..99d9573c1dc2 100644
--- a/sfx2/source/appl/appbas.cxx
+++ b/sfx2/source/appl/appbas.cxx
@@ -140,7 +140,7 @@ StarBASIC* SfxApplication::GetBasic()
#endif
}
-void SfxApplication::PropExec_Impl( SfxRequest &rReq )
+void SfxApplication::PropExec_Impl( SfxRequest const &rReq )
{
sal_uInt16 nSID = rReq.GetSlot();
switch ( nSID )
diff --git a/sfx2/source/appl/helpinterceptor.cxx b/sfx2/source/appl/helpinterceptor.cxx
index 4e3db51d4125..03f81a25e358 100644
--- a/sfx2/source/appl/helpinterceptor.cxx
+++ b/sfx2/source/appl/helpinterceptor.cxx
@@ -278,7 +278,7 @@ void SAL_CALL HelpListener_Impl::disposing( const css::lang::EventObject& )
}
HelpStatusListener_Impl::HelpStatusListener_Impl(
- Reference < XDispatch > const & aDispatch, URL& rURL)
+ Reference < XDispatch > const & aDispatch, URL const & rURL)
{
aDispatch->addStatusListener(this, rURL);
}
diff --git a/sfx2/source/appl/helpinterceptor.hxx b/sfx2/source/appl/helpinterceptor.hxx
index f557d35c82f7..6f3f4beadf35 100644
--- a/sfx2/source/appl/helpinterceptor.hxx
+++ b/sfx2/source/appl/helpinterceptor.hxx
@@ -140,7 +140,7 @@ private:
public:
HelpStatusListener_Impl(
css::uno::Reference < css::frame::XDispatch > const & xDispatch,
- css::util::URL& rURL);
+ css::util::URL const & rURL);
virtual ~HelpStatusListener_Impl() override;
virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) override;
diff --git a/sfx2/source/appl/impldde.cxx b/sfx2/source/appl/impldde.cxx
index d0d36941f590..ff7898eaded1 100644
--- a/sfx2/source/appl/impldde.cxx
+++ b/sfx2/source/appl/impldde.cxx
@@ -61,13 +61,13 @@ class SvDDELinkEditDialog : public ModalDialog
DECL_LINK( EditHdl_Impl, Edit&, void );
public:
- SvDDELinkEditDialog( vcl::Window* pParent, SvBaseLink* );
+ SvDDELinkEditDialog( vcl::Window* pParent, SvBaseLink const * );
virtual ~SvDDELinkEditDialog() override;
virtual void dispose() override;
OUString GetCmd() const;
};
-SvDDELinkEditDialog::SvDDELinkEditDialog( vcl::Window* pParent, SvBaseLink* pLink )
+SvDDELinkEditDialog::SvDDELinkEditDialog( vcl::Window* pParent, SvBaseLink const * pLink )
: ModalDialog( pParent, "LinkEditDialog", "sfx/ui/linkeditdialog.ui" )
{
get(m_pOKButton, "ok");
diff --git a/sfx2/source/dialog/recfloat.cxx b/sfx2/source/dialog/recfloat.cxx
index f73a1949414d..ed05e0375d14 100644
--- a/sfx2/source/dialog/recfloat.cxx
+++ b/sfx2/source/dialog/recfloat.cxx
@@ -34,7 +34,7 @@ SFX_IMPL_FLOATINGWINDOW( SfxRecordingFloatWrapper_Impl, SID_RECORDING_FLOATWINDO
SfxRecordingFloatWrapper_Impl::SfxRecordingFloatWrapper_Impl( vcl::Window* pParentWnd ,
sal_uInt16 nId ,
SfxBindings* pBind ,
- SfxChildWinInfo* pInfo )
+ SfxChildWinInfo const * pInfo )
: SfxChildWindow( pParentWnd, nId )
, pBindings( pBind )
{
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx
index 51b3cfbf2a32..19bccfb8efb7 100644
--- a/sfx2/source/doc/sfxbasemodel.cxx
+++ b/sfx2/source/doc/sfxbasemodel.cxx
@@ -339,11 +339,11 @@ class SfxOwnFramesLocker
static vcl::Window* GetVCLWindow( const Reference< frame::XFrame >& xFrame );
public:
- explicit SfxOwnFramesLocker( SfxObjectShell* ObjechShell );
+ explicit SfxOwnFramesLocker( SfxObjectShell const * ObjechShell );
~SfxOwnFramesLocker();
};
-SfxOwnFramesLocker::SfxOwnFramesLocker( SfxObjectShell* pObjectShell )
+SfxOwnFramesLocker::SfxOwnFramesLocker( SfxObjectShell const * pObjectShell )
{
if ( !pObjectShell )
return;
diff --git a/sfx2/source/inc/docundomanager.hxx b/sfx2/source/inc/docundomanager.hxx
index 22b21b853eef..108de6fbaf1c 100644
--- a/sfx2/source/inc/docundomanager.hxx
+++ b/sfx2/source/inc/docundomanager.hxx
@@ -72,7 +72,7 @@ public:
E_FULLY_ALIVE
};
- SfxModelGuard( SfxBaseModel& i_rModel, const AllowedModelState i_eState = E_FULLY_ALIVE )
+ SfxModelGuard( SfxBaseModel const & i_rModel, const AllowedModelState i_eState = E_FULLY_ALIVE )
: m_aGuard()
{
i_rModel.MethodEntryCheck( i_eState != E_INITIALIZING );
diff --git a/sfx2/source/inc/recfloat.hxx b/sfx2/source/inc/recfloat.hxx
index d3bfd427949f..9862927bb492 100644
--- a/sfx2/source/inc/recfloat.hxx
+++ b/sfx2/source/inc/recfloat.hxx
@@ -30,7 +30,7 @@ public:
SfxRecordingFloatWrapper_Impl( vcl::Window* pParent ,
sal_uInt16 nId ,
SfxBindings* pBindings ,
- SfxChildWinInfo* pInfo );
+ SfxChildWinInfo const * pInfo );
virtual ~SfxRecordingFloatWrapper_Impl() override;
SFX_DECL_CHILDWINDOW(SfxRecordingFloatWrapper_Impl);
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx
index 73d7f562b1ee..a092eef150a5 100644
--- a/sfx2/source/view/frame.cxx
+++ b/sfx2/source/view/frame.cxx
@@ -395,7 +395,7 @@ void SfxFrame::RemoveTopFrame_Impl( SfxFrame* pFrame )
rArr.erase( it );
}
-SfxFrameItem::SfxFrameItem( sal_uInt16 nWhichId, SfxViewFrame *p )
+SfxFrameItem::SfxFrameItem( sal_uInt16 nWhichId, SfxViewFrame const *p )
: SfxPoolItem( nWhichId ), pFrame( p ? &p->GetFrame() : nullptr )
{
wFrame = pFrame;