diff options
author | Volker Ahrendt <va@openoffice.org> | 2002-10-30 15:10:10 +0000 |
---|---|---|
committer | Volker Ahrendt <va@openoffice.org> | 2002-10-30 15:10:10 +0000 |
commit | e90e03ada3231055171f2960a17bccd6a94386b7 (patch) | |
tree | ebc7aa6b1eb282c31273fe540966d4de042ec6ca /wizards | |
parent | 4c47405c2a448632f46712834d89a8b21f0f2129 (diff) |
#103331# Corrected entries in basic regarding 'history'-function.
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/depot/Internet.xba | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/source/depot/Internet.xba b/wizards/source/depot/Internet.xba index 9d2315f484a6..62522956fadc 100644 --- a/wizards/source/depot/Internet.xba +++ b/wizards/source/depot/Internet.xba @@ -57,10 +57,10 @@ Dim ChartSource as String sStockID = oFirstSheet.GetCellByPosition(SBCOLUMNID1, CurRow).String ChartSource = ReplaceString(HistoryChartSource, sStockID, "<StockID>") ChartSource = ReplaceString(ChartSource, iStartDay, "<StartDay>") - ChartSource = ReplaceString(ChartSource, iStartMonth, "<StartMonth>") + ChartSource = ReplaceString(ChartSource, cStr(iStartMonth-1), "<StartMonth>") ChartSource = ReplaceString(ChartSource, iStartYear, "<StartYear>") ChartSource = ReplaceString(ChartSource, iEndDay, "<EndDay>") - ChartSource = ReplaceString(ChartSource, iEndMonth, "<EndMonth>") + ChartSource = ReplaceString(ChartSource, cStr(iEndMonth-1), "<EndMonth>") ChartSource = ReplaceString(ChartSource, iEndYear, "<EndYear>") ChartSource = ReplaceString(ChartSource, sInterval, "<interval>") oStatusLine.SetValue(2) |