svx/source/form/navigatortree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a27a8f0c03436916e20e3362e8b5ed2410da3b23 Author: Efdal İncesu <[email protected]> AuthorDate: Sun Jan 26 17:09:50 2020 +0300 Commit: Muhammet Kara <[email protected]> CommitDate: Mon Jan 27 14:37:45 2020 +0100 tdf#75280: Convert inappropriate use of sal_uIntPtr to better integer types Change-Id: I1f9c143eee8da149d87668063cc2da16d22312db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87464 Tested-by: Jenkins Reviewed-by: Muhammet Kara <[email protected]> diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx index 32f1bcf482fb..12995e5c7167 100644 --- a/svx/source/form/navigatortree.cxx +++ b/svx/source/form/navigatortree.cxx @@ -656,7 +656,7 @@ namespace svxform // selection can be modified during deletion, // but because I disabled SelectionHandling, I have to do it later - sal_uIntPtr nExpectedSelectionCount = GetSelectionCount(); + sal_uLong nExpectedSelectionCount = GetSelectionCount(); GetModel()->Remove(pEntry); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
