summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2019-07-22 11:16:38 +0200
committerJean-Pierre Ledure <jp@ledure.be>2019-07-22 11:20:40 +0200
commitd96b67bb33ee5736e298dd708dd5d96f83f646e4 (patch)
tree3272c01c59e5796360fbbc3d46c2d138d3a84f03 /wizards
parent7247f840529bf6f06a2360331ae32c268b426b07 (diff)
Access2Base - FIX GetRows abort
https://forum.openoffice.org/en/forum/viewtopic.php? f=47&t=61447&sid=a91a30f8f02fe6dd656b2940a26d8c5c&start=30#p473874 Precise module name in call to _getResult...
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/access2base/Recordset.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/access2base/Recordset.xba b/wizards/source/access2base/Recordset.xba
index 88a029190a27..094bba000d7b 100644
--- a/wizards/source/access2base/Recordset.xba
+++ b/wizards/source/access2base/Recordset.xba
@@ -608,7 +608,7 @@ Dim vMatrix() As Variant, lSize As Long, iNumFields As Integer, i As Integer
Do While Not _EOF And lSize &lt; pvNumRows - 1
lSize = lSize + 1
For i = 0 To iNumFields
- vMatrix(i, lSize) = _getResultSetColumnValue(RowSet, i + 1)
+ vMatrix(i, lSize) = Utils._getResultSetColumnValue(RowSet, i + 1)
If pbStrDate And IsDate(vMatrix(i, lSize)) Then vMatrix(i, lSize) = _CStr(vMatrix(i, lSize))
Next i
_Move(&quot;NEXT&quot;)