diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-05-04 21:20:04 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-05-07 08:41:07 +0200 |
commit | aaf24bbfeb7126ac7e3193653a53795e9b817e98 (patch) | |
tree | 3c023c6ec345a53287b142fbf873511f54be3a1b /sc | |
parent | 35bdc8b0014b1a9a97ccf02fb670e3f8911a9f13 (diff) |
always check return of SfxViewShell::Current()
Change-Id: If8f50536295a44a4a8cf692d758ca03e726902e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167074
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index f76842429912..5b1d3cbdbced 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -1292,7 +1292,7 @@ void ScInputHandler::ShowArgumentsTip( OUString& rSelText ) } const SfxViewShell* pViewShell = SfxViewShell::Current(); - if (comphelper::LibreOfficeKit::isActive() && pViewShell->isLOKDesktop()) + if (comphelper::LibreOfficeKit::isActive() && pViewShell && pViewShell->isLOKDesktop()) { tools::JsonWriter writer; writer.put("type", "formulausage"); |