diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-26 16:01:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-30 10:34:38 +0200 |
commit | ec3f72415850bd865eb030cf2b7edb55b99d4756 (patch) | |
tree | e63a41091957725506cbb107a272a9872081e3e5 /include/basic/sbx.hxx | |
parent | d2df03574023b379ac09b1f71cae9e3ba3ac53e2 (diff) |
loplugin:unusedfields
Change-Id: Icac4ac1a2614e72bc9ff070819533e09eeb1a864
Diffstat (limited to 'include/basic/sbx.hxx')
-rw-r--r-- | include/basic/sbx.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index 90d2b72ebd01..47d7687146a0 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -50,12 +50,11 @@ class SfxBroadcaster; struct SbxParamInfo { const OUString aName; // Name of the parameter - SbxBaseRef aTypeRef; // Object, if object type SbxDataType eType; // Data type SbxFlagBits nFlags; // Flag-Bits sal_uInt32 nUserData; // IDs etc. - SbxParamInfo( const OUString& s, SbxDataType t, SbxFlagBits n, SbxBase* b = nullptr ) - : aName( s ), aTypeRef( b ), eType( t ), nFlags( n ), nUserData( 0 ) {} + SbxParamInfo( const OUString& s, SbxDataType t, SbxFlagBits n ) + : aName( s ), eType( t ), nFlags( n ), nUserData( 0 ) {} ~SbxParamInfo() {} }; |