From ca07d5bef335b220139b858a5b54aa62983a66e1 Mon Sep 17 00:00:00 2001 From: "Matthew J. Francis" Date: Wed, 25 Mar 2015 13:01:17 +0800 Subject: tdf#68547 Turkısh "ı" ıs specıal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Capital "i" is "İ" Small "I" is "ı" Therefore, any BASIC we ship had better be clean of case-insensitive function name comparisons (or at least those involving "i"s), because they will not work when the system locale is Turkish. Change-Id: Ibf3a35a55b6b1ba384731dfa92caf24b51245530 Reviewed-on: https://gerrit.libreoffice.org/14995 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- wizards/source/tutorials/TutorialOpen.xba | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wizards/source/tutorials') diff --git a/wizards/source/tutorials/TutorialOpen.xba b/wizards/source/tutorials/TutorialOpen.xba index 35112155dbb9..5b6001c6ca13 100644 --- a/wizards/source/tutorials/TutorialOpen.xba +++ b/wizards/source/tutorials/TutorialOpen.xba @@ -54,7 +54,7 @@ Sub Init oDocInfo.Read(completPath) sDocTitle = oDocInfo.Title if(not isNull(sDocTitle) And len(sDocTitle) > 0) Then - oListbox.additem(sDocTitle,0) + oListbox.addItem(sDocTitle,0) tempFiles(tempCount) = completPath tempCount = tempCount + 1 End If -- cgit