diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-05-17 19:36:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-05-18 21:23:41 +0200 |
commit | 64557ef9fa57507455f196dd3c96e8a25be64c53 (patch) | |
tree | 7cbb5bd8530a340be05bc5885084e6cd9bb3cfd2 /sd | |
parent | 551c8230b495e8c0e0502b73445f6edd1510633e (diff) |
cid#1598235 Uninitialized pointer field
Change-Id: I8c403a0bcfa56e58fdf12cb045c98b2087889235
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167794
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/framework/module/NotesPaneModule.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/framework/module/NotesPaneModule.hxx b/sd/source/ui/framework/module/NotesPaneModule.hxx index 69a74acbdf0c..229b61e71a89 100644 --- a/sd/source/ui/framework/module/NotesPaneModule.hxx +++ b/sd/source/ui/framework/module/NotesPaneModule.hxx @@ -73,7 +73,7 @@ private: std::set<OUString> maActiveMainViewContainer; OUString msCurrentMainViewURL; - ViewShellBase* mpViewShellBase; + ViewShellBase* mpViewShellBase = nullptr; bool mbListeningEventMultiplexer = false; bool mbInMasterEditMode = false; |