sc/source/ui/unoobj/docuno.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 701eb22d9cb0c5ed785df09acf0d14d16d64a768
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Sun Jan 21 12:08:32 2024 +0000
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Sun Jan 21 16:00:51 2024 +0100

    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.mcnam...@collabora.com>

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;
         }
     }

Reply via email to