summaryrefslogtreecommitdiffstats
path: root/basic/source/runtime/stdobj1.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-20 10:08:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-20 12:01:08 +0200
commit6d829ae4f218b5d751cfc366f071fc6160c0787c (patch)
tree0a013183aa423d51c004756ae843961c3803aacd /basic/source/runtime/stdobj1.cxx
parenttdf#109080 First page header/footer ODF (2/2) (diff)
downloadcore-6d829ae4f218b5d751cfc366f071fc6160c0787c.tar.gz
core-6d829ae4f218b5d751cfc366f071fc6160c0787c.zip
loplugin:constparams in basic
Change-Id: Idf55f63f2d56be4997a8cdc6afc5690eacac9a60 Reviewed-on: https://gerrit.libreoffice.org/40214 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/runtime/stdobj1.cxx')
-rw-r--r--basic/source/runtime/stdobj1.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/stdobj1.cxx b/basic/source/runtime/stdobj1.cxx
index d0dedad8961f..07342d1bb1ee 100644
--- a/basic/source/runtime/stdobj1.cxx
+++ b/basic/source/runtime/stdobj1.cxx
@@ -277,7 +277,7 @@ void SbStdFont::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
}
-void SbStdClipboard::MethClear( SbxVariable*, SbxArray* pPar_, bool )
+void SbStdClipboard::MethClear( SbxVariable*, SbxArray const * pPar_, bool )
{
if( pPar_ && (pPar_->Count() > 1) )
{
@@ -322,7 +322,7 @@ void SbStdClipboard::MethGetFormat( SbxVariable* pVar, SbxArray* pPar_, bool )
pVar->PutBool( false );
}
-void SbStdClipboard::MethGetText( SbxVariable* pVar, SbxArray* pPar_, bool )
+void SbStdClipboard::MethGetText( SbxVariable* pVar, SbxArray const * pPar_, bool )
{
if( pPar_ && (pPar_->Count() > 1) )
{
@@ -350,7 +350,7 @@ void SbStdClipboard::MethSetData( SbxArray* pPar_, bool )
}
-void SbStdClipboard::MethSetText( SbxArray* pPar_, bool )
+void SbStdClipboard::MethSetText( SbxArray const * pPar_, bool )
{
if( !pPar_ || (pPar_->Count() != 2) )
{