diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-12 08:37:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-12 08:17:11 +0100 |
commit | b5da97197bd3d0de0e5cb737da96ceab1146f679 (patch) | |
tree | fc877af67f059e42125c1d02ad24755edf2b6c11 /pyuno/source/module/pyuno_impl.hxx | |
parent | 2e74fdc559eb1b7bab1a6661203400017f93b234 (diff) |
Revert "loplugin:constfields in package..registry"
This reverts commit 31138ff7729cbf179079a5e635d3a823e2971f08.
Now that we know that making fields has negative side effects
like disabling assignment operator generation.
Change-Id: I3f1ae65532f441c8be5ebca5866b8a1e1c69318c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90363
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'pyuno/source/module/pyuno_impl.hxx')
-rw-r--r-- | pyuno/source/module/pyuno_impl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx index 8af2da85639d..a1ac6fbf92fd 100644 --- a/pyuno/source/module/pyuno_impl.hxx +++ b/pyuno/source/module/pyuno_impl.hxx @@ -335,8 +335,8 @@ class Adapter : public cppu::WeakImplHelper< css::script::XInvocation, css::lang::XUnoTunnel > { PyRef mWrappedObject; - PyInterpreterState * const mInterpreter; // interpreters don't seem to be refcounted ! - css::uno::Sequence< css::uno::Type > const mTypes; + PyInterpreterState *mInterpreter; // interpreters don't seem to be refcounted ! + css::uno::Sequence< css::uno::Type > mTypes; MethodOutIndexMap m_methodOutIndexMap; private: |