dbaccess/source/ui/tabledesign/TableUndo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 75b569890a6630bb2a5b727c8567f7ea59ccb62e Author: Harshita Nag <nagharshit...@gmail.com> AuthorDate: Sat Nov 12 17:52:02 2022 +0530 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sun Nov 13 11:56:35 2022 +0100 tdf#114441: Convert use of sal_uLong to better integer types The above change was possible because GetPos() returns value of type sal_Int32 Change-Id: I9fa4389531813eb3c866a355d2f55ddfb32233a5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142634 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/dbaccess/source/ui/tabledesign/TableUndo.cxx b/dbaccess/source/ui/tabledesign/TableUndo.cxx index 3769e5fd08cb..7829a09d6959 100644 --- a/dbaccess/source/ui/tabledesign/TableUndo.cxx +++ b/dbaccess/source/ui/tabledesign/TableUndo.cxx @@ -179,7 +179,7 @@ OTableEditorDelUndoAct::~OTableEditorDelUndoAct() void OTableEditorDelUndoAct::Undo() { // Insert the deleted line - sal_uLong nPos; + sal_Int32 nPos; std::shared_ptr<OTableRow> pNewOrigRow; std::vector< std::shared_ptr<OTableRow> >* pOriginalRows = pTabEdCtrl->GetRowList();