summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-17 09:09:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-17 09:09:28 +0100
commit3972f34a611b36807b8c66e3c65ab7090ddcc3f7 (patch)
tree8b40617f3250ed0149529cf8f18ea48a5c9ec3e5 /i18npool
parent970813b0a4ac0bd1e07dfb0803bdebca9c3e9e6a (diff)
Typo "stirng" -> "string"
Change-Id: I08c98ed0f81894444a75adcf7da3a952c7f418cf
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_asian.cxx2
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/source/indexentry/indexentrysupplier_asian.cxx b/i18npool/source/indexentry/indexentrysupplier_asian.cxx
index afe5392587ac..469a459d60a0 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 1a956cdeb75b..d7ccf35857fe 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;