[Libreoffice-commits] core.git: i18npool/source
Stephan Bergmann
sbergman at redhat.com
Tue Nov 17 00:09:52 PST 2015
i18npool/source/indexentry/indexentrysupplier_asian.cxx | 2 +-
i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 3972f34a611b36807b8c66e3c65ab7090ddcc3f7
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Nov 17 09:09:00 2015 +0100
Typo "stirng" -> "string"
Change-Id: I08c98ed0f81894444a75adcf7da3a952c7f418cf
diff --git a/i18npool/source/indexentry/indexentrysupplier_asian.cxx b/i18npool/source/indexentry/indexentrysupplier_asian.cxx
index afe5392..469a459 100644
--- a/i18npool/source/indexentry/indexentrysupplier_asian.cxx
+++ b/i18npool/source/indexentry/indexentrysupplier_asian.cxx
@@ -126,7 +126,7 @@ IndexEntrySupplier_asian::getIndexCharacter( const OUString& rIndexEntry,
}
}
- // using alphanumeric index for non-define stirng
+ // using alphanumeric index for non-define string
return OUString(&idxStr[(ch & 0xFFFFFF00) ? 0 : ch], 1);
}
diff --git a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
index 1a956cd..d7ccf35 100644
--- a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
+++ b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
@@ -32,7 +32,7 @@ OUString SAL_CALL IndexEntrySupplier_ja_phonetic::getIndexCharacter( const OUStr
sal_Unicode ch=rIndexEntry.toChar();
sal_uInt16 first = idx[ ch >> 8 ];
if (first == 0xFFFF) {
- // using alphanumeric index for non-define stirng
+ // using alphanumeric index for non-define string
return OUString(&idxStr[(ch & 0xFF00) ? 0 : ch], 1);
} else {
const sal_Unicode *idx2 = strstr(implementationName, "syllable") ? syllable : consonant;
More information about the Libreoffice-commits
mailing list