diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-08 14:52:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-10 09:52:53 +0100 |
commit | b875ceabf0bd5572e15afccc2cbedaa783badca0 (patch) | |
tree | a83ed0fb7a4607fd3038cb5967f45091344113a3 /include/basic | |
parent | 87be89ac27023f48f68a873b37df31aa0453d6fa (diff) |
loplugin:fieldcast in SbModule
Change-Id: I92084a1cf31832404aca43f0c8e2137a33978976
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159251
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/sbmod.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx index 10b54217e55b..5c369b441f92 100644 --- a/include/basic/sbmod.hxx +++ b/include/basic/sbmod.hxx @@ -39,7 +39,7 @@ typedef std::deque< sal_uInt16 > SbiBreakpoints; class SbiImage; class SbClassModuleObject; class CodeCompleteDataCache; - +class SbUnoObject; class ModuleInitDependencyMap; struct ClassModuleRunInitItem; @@ -69,7 +69,7 @@ protected: bool mbVBASupport; // Option VBASupport bool mbCompat; // Option Compatible sal_Int32 mnType; - SbxObjectRef pDocObject; // an impl object ( used by Document Modules ) + tools::SvRef<SbUnoObject> pDocObject; // an impl object ( used by Document Modules ) bool bIsProxyModule; SAL_DLLPRIVATE static void implProcessModuleRunInit( ModuleInitDependencyMap& rMap, ClassModuleRunInitItem& rItem ); |