diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-02-12 18:55:05 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-21 12:13:13 +0200 |
commit | 7c7b3c70e1def37ee707827e75d0afa00b0b3619 (patch) | |
tree | 8fce900e886caab61311655fa29beeb4e0729dc7 /extensions | |
parent | 0653ddb11620db917f4de97c0d6078ef55d128ed (diff) |
These fields can be const
Change-Id: I103f06b9c7f14ac7eff9911ab5bebc4c98e7d41f
Reviewed-on: https://gerrit.libreoffice.org/54614
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index ddc64ce666ad..6e25170741f4 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -189,8 +189,8 @@ protected: // This member determines what class is used to convert a UNO object // or struct to a COM object. It is passed along to the o2u_anyToVariant // function in the createBridge function implementation - sal_uInt8 m_nUnoWrapperClass; - sal_uInt8 m_nComWrapperClass; + const sal_uInt8 m_nUnoWrapperClass; + const sal_uInt8 m_nComWrapperClass; // The servicemanager is either a local smgr or remote when the service // com.sun.star.bridge.OleBridgeSupplierVar1 is used. This service can be |