summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-01 20:28:16 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-02 09:24:11 +0200
commit41590e7d1f8ee67c7d5c29c89a9b246c8c8f0f05 (patch)
tree8550293a2dc028b84799b4721b8b369eba97e6d8 /include
parentcaf719c59c6dc8db2b6a0eab8d47760277f112a3 (diff)
WaE: C6011 Dereferencing NULL pointer warnings
Change-Id: I8edb1fefe1b2b8a3db3ee8f3a0eed59c7f08a36e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166863 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r--include/basic/sbmod.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx
index 5c369b441f92..0463ae13f90f 100644
--- a/include/basic/sbmod.hxx
+++ b/include/basic/sbmod.hxx
@@ -55,7 +55,7 @@ class BASIC_DLLPUBLIC SbModule : public SbxObject
std::vector< OUString > mModuleVariableNames;
- BASIC_DLLPRIVATE static void implClearIfVarDependsOnDeletedBasic( SbxVariable* pVar, StarBASIC* pDeletedBasic );
+ BASIC_DLLPRIVATE static void implClearIfVarDependsOnDeletedBasic(SbxVariable& rVar, StarBASIC* pDeletedBasic);
SbModule(const SbModule&) = delete;
SbModule& operator=(const SbModule&) = delete;