summaryrefslogtreecommitdiff
path: root/i18npool/source/transliteration/ignoreKashida_CTL.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/source/transliteration/ignoreKashida_CTL.cxx')
-rw-r--r--i18npool/source/transliteration/ignoreKashida_CTL.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/i18npool/source/transliteration/ignoreKashida_CTL.cxx b/i18npool/source/transliteration/ignoreKashida_CTL.cxx
index 4dfb54da2e7d..e93ffd849481 100644
--- a/i18npool/source/transliteration/ignoreKashida_CTL.cxx
+++ b/i18npool/source/transliteration/ignoreKashida_CTL.cxx
@@ -9,12 +9,11 @@
#include <transliteration_Ignore.hxx>
-namespace i18npool {
-
-static sal_Unicode
-ignoreKashida_CTL_translator (const sal_Unicode c)
+namespace i18npool
+{
+static sal_Unicode ignoreKashida_CTL_translator(const sal_Unicode c)
{
- if( c == 0x0640 ) // Check if it's Kashida
+ if (c == 0x0640) // Check if it's Kashida
return 0xffff; // Then skip this character
return c;
@@ -28,7 +27,6 @@ ignoreKashida_CTL::ignoreKashida_CTL()
transliterationName = "ignoreKashida_CTL";
implementationName = "com.sun.star.i18n.Transliteration.ignoreKashida_CTL";
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */