diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2019-09-26 08:39:19 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-09-27 20:26:35 +0200 |
commit | 7c694158ffb6549b31c2547c82c6bd670757a53c (patch) | |
tree | 59f9f6a2e0d0afb4c3bfac63879fa709d5ad7704 /wizards | |
parent | 5e1b57b8e6482616a415f995c2fa261d5a189973 (diff) |
tdf#50846 - Wrong type of function GetLastUsedRow
Changed the type of the function GetLastUsedRow from int to long
in order to avoid overflows.
Change-Id: Ia0d789611f732eecdfdbe557b751dbead5748c45
Reviewed-on: https://gerrit.libreoffice.org/79586
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/depot/Internet.xba | 10 | ||||
-rw-r--r-- | wizards/source/tools/Misc.xba | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/wizards/source/depot/Internet.xba b/wizards/source/depot/Internet.xba index 333bcf98af89..d3393bc72ae9 100644 --- a/wizards/source/depot/Internet.xba +++ b/wizards/source/depot/Internet.xba @@ -172,17 +172,17 @@ Sub UpdateValue(ByVal sName As String, fDate As Double, fValue As Double ) Dim oSheet As Object Dim iColumn As Long Dim iRow As Long -Dim i as Integer +Dim i as Long Dim oCell As Object Dim LastDate as Date Dim bLeaveLoop as Boolean -Dim RemoveCount as Integer -Dim iLastRow as Integer -Dim iLastLinkRow as Integer +Dim RemoveCount as Long +Dim iLastRow as Long +Dim iLastLinkRow as Long Dim dDate as Date Dim CurDate as Date Dim oLinkSheet as Object -Dim StartIndex as Integer +Dim StartIndex as Long Dim iCellValue as Long ' Insert Sheet with Company - Chart sName = CheckNewSheetname(oSheets, sName) diff --git a/wizards/source/tools/Misc.xba b/wizards/source/tools/Misc.xba index 2bf17d32e984..9b9e1dba6cda 100644 --- a/wizards/source/tools/Misc.xba +++ b/wizards/source/tools/Misc.xba @@ -642,7 +642,7 @@ Dim i as Integer End Function -Function GetLastUsedRow(oSheet as Object) as Integer +Function GetLastUsedRow(oSheet as Object) as Long Dim oCell As Object Dim oCursor As Object Dim aAddress As Variant |