diff options
author | Matthew J. Francis <mjay.francis@gmail.com> | 2015-03-25 13:01:17 +0800 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-03-25 06:40:40 +0000 |
commit | ca07d5bef335b220139b858a5b54aa62983a66e1 (patch) | |
tree | af136935a98cb9883923514eaa21462842767677 /wizards/source/tutorials | |
parent | 5a5c9d0fa42201d0fbec2670f097f00a8ff91d2c (diff) |
tdf#68547 Turkısh "ı" ıs specıal
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 <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'wizards/source/tutorials')
-rw-r--r-- | wizards/source/tutorials/TutorialOpen.xba | 2 |
1 files changed, 1 insertions, 1 deletions
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 |