summaryrefslogtreecommitdiffstats
path: root/idl/source/objects
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-25 15:09:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-28 08:32:56 +0200
commit3a36cf434fb4a967c9ea767cb7ac5f4da0502a0d (patch)
treeab1747ff3e977ad322cf05b68626879f2c68e6e0 /idl/source/objects
parenttdf#107020: Reintroduce uses of I32S, I64S (diff)
downloadcore-3a36cf434fb4a967c9ea767cb7ac5f4da0502a0d.tar.gz
core-3a36cf434fb4a967c9ea767cb7ac5f4da0502a0d.zip
loplugin:checkunusedparams in configmgr and vcl
Change-Id: I7226d01f38e6edaf3868d7267d9b02dbdbc9e5ba Reviewed-on: https://gerrit.libreoffice.org/36975 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idl/source/objects')
-rw-r--r--idl/source/objects/types.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index ed58c172f39c..f90145f7cd56 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -156,8 +156,7 @@ SvMetaType * SvMetaType::GetReturnType() const
return static_cast<SvMetaType *>(GetRef());
}
-bool SvMetaType::ReadHeaderSvIdl( SvIdlDataBase & ,
- SvTokenStream & rInStm )
+bool SvMetaType::ReadHeaderSvIdl( SvTokenStream & rInStm )
{
bool bOk = false;
sal_uInt32 nTokPos = rInStm.Tell();
@@ -181,7 +180,7 @@ bool SvMetaType::ReadHeaderSvIdl( SvIdlDataBase & ,
bool SvMetaType::ReadSvIdl( SvIdlDataBase & rBase,
SvTokenStream & rInStm )
{
- if( ReadHeaderSvIdl( rBase, rInStm ) )
+ if( ReadHeaderSvIdl( rInStm ) )
{
rBase.Write(OString('.'));
return SvMetaReference::ReadSvIdl( rBase, rInStm );