summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorVolker Ahrendt <va@openoffice.org>2002-10-30 15:10:10 +0000
committerVolker Ahrendt <va@openoffice.org>2002-10-30 15:10:10 +0000
commite90e03ada3231055171f2960a17bccd6a94386b7 (patch)
treeebc7aa6b1eb282c31273fe540966d4de042ec6ca /wizards
parent4c47405c2a448632f46712834d89a8b21f0f2129 (diff)
#103331# Corrected entries in basic regarding 'history'-function.
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/depot/Internet.xba4
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, &quot;&lt;StockID&gt;&quot;)
ChartSource = ReplaceString(ChartSource, iStartDay, &quot;&lt;StartDay&gt;&quot;)
- ChartSource = ReplaceString(ChartSource, iStartMonth, &quot;&lt;StartMonth&gt;&quot;)
+ ChartSource = ReplaceString(ChartSource, cStr(iStartMonth-1), &quot;&lt;StartMonth&gt;&quot;)
ChartSource = ReplaceString(ChartSource, iStartYear, &quot;&lt;StartYear&gt;&quot;)
ChartSource = ReplaceString(ChartSource, iEndDay, &quot;&lt;EndDay&gt;&quot;)
- ChartSource = ReplaceString(ChartSource, iEndMonth, &quot;&lt;EndMonth&gt;&quot;)
+ ChartSource = ReplaceString(ChartSource, cStr(iEndMonth-1), &quot;&lt;EndMonth&gt;&quot;)
ChartSource = ReplaceString(ChartSource, iEndYear, &quot;&lt;EndYear&gt;&quot;)
ChartSource = ReplaceString(ChartSource, sInterval, &quot;&lt;interval&gt;&quot;)
oStatusLine.SetValue(2)