diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-21 12:08:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-21 16:00:51 +0100 |
commit | 701eb22d9cb0c5ed785df09acf0d14d16d64a768 (patch) | |
tree | 43629faa8478e75db5c4ebebee1f8101bb6852cb /sc | |
parent | b2ade3e63e34556cad8157e25f8c75d29e79537d (diff) |
cid#1586650 silence Unchecked return value
Change-Id: I0cda4ed1e56737e6df6dec46d03414664970e3bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162342
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 7b8002bd194b..8e1db84c65b9 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -902,7 +902,7 @@ OUString ScModelObj::hyperlinkInfoAtPosition(int x, int y) const Point point(x * pViewData->GetPPTX(), y * pViewData->GetPPTY()); OUString name; OUString url; - pGridWindow->GetEditUrl(point, &name, &url); + (void)pGridWindow->GetEditUrl(point, &name, &url); return url; } } |