diff options
Diffstat (limited to 'Source/TableDump.m')
-rw-r--r-- | Source/TableDump.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m index a9b1be37..eaa86510 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -1985,7 +1985,9 @@ } // Walk through the array, contructing the XML string. - for ( i = 1 ; i < totalRows ; i++ ) { + // Note: the XML array starts at index 1 thus we have to iterate + // to i < totalRows + 1 in order to output the very last row. + for ( i = 1 ; i < totalRows + 1 ; i++ ) { // Update the progress bar if (totalRows) [singleProgressBar setDoubleValue:((i+1)*100/totalRows)]; |