diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-15 15:54:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-16 08:30:26 +0000 |
commit | a2b77b43685884fb4e9be04152a49294fa50db36 (patch) | |
tree | 00d599e81a653dc5c663f9dd179970b3e6aa11f2 /basic/source/inc | |
parent | 389939b02bde4ea72268960310bbd1f2984200bf (diff) |
loplugin:singlevalfields in basic..idl
Also fix obvious bug in the initialisation of the
connectivity::odbc::OConnection::m_bClosed field.
Probably closes some kind of connection leak there.
Change-Id: I04579cf91bcd6d6c51c697d83971da4142743a82
Reviewed-on: https://gerrit.libreoffice.org/28932
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/inc')
-rw-r--r-- | basic/source/inc/parser.hxx | 1 | ||||
-rw-r--r-- | basic/source/inc/runtime.hxx | 1 | ||||
-rw-r--r-- | basic/source/inc/sbunoobj.hxx | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx index 8b16d4c94e25..9d2553f67b1b 100644 --- a/basic/source/inc/parser.hxx +++ b/basic/source/inc/parser.hxx @@ -69,7 +69,6 @@ public: SbiSymPool aRtlSyms; // Runtime-Library SbiCodeGen aGen; // Code-Generator SbiSymPool* pPool; - SbiExprType eCurExpr; short nBase; // OPTION BASE-value bool bText; // OPTION COMPARE TEXT bool bExplicit; // true: OPTION EXPLICIT diff --git a/basic/source/inc/runtime.hxx b/basic/source/inc/runtime.hxx index 8278f76cbd7f..5a1e8c211d24 100644 --- a/basic/source/inc/runtime.hxx +++ b/basic/source/inc/runtime.hxx @@ -154,7 +154,6 @@ class SbiInstance ComponentVector_t ComponentVector; public: SbiRuntime* pRun; // Call-Stack - SbiInstance* pNext; // instances chain // #31460 new concept for StepInto/Over/Out, // explanation see runtime.cxx at SbiInstance::CalcBreakCallLevel() diff --git a/basic/source/inc/sbunoobj.hxx b/basic/source/inc/sbunoobj.hxx index e1d64f4b6739..9ec617a7230a 100644 --- a/basic/source/inc/sbunoobj.hxx +++ b/basic/source/inc/sbunoobj.hxx @@ -268,8 +268,6 @@ class SbUnoServiceCtor : public SbxMethod css::uno::Reference< css::reflection::XServiceConstructorDescription > m_xServiceCtorDesc; - SbUnoServiceCtor* pNext; - public: SbUnoServiceCtor( const OUString& aName_, css::uno::Reference< css::reflection::XServiceConstructorDescription > const & xServiceCtorDesc ); |