summaryrefslogtreecommitdiff
path: root/i18npool/inc/transliteration_Ignore.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-11 12:53:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-11 12:53:25 +0200
commitd9645bf8a1c1c95aeeb9a90b89387d82795f56dd (patch)
treefab44b8a376f338e6ea769a477e7d7c35192e19b /i18npool/inc/transliteration_Ignore.hxx
parent63bc11b81f8af188564a385c1e501fd7334c343d (diff)
Prevent erroneous pick up of unrelated css::i18n::Maping
...from include/i18nutil/casefolding.hxx Change-Id: I892a83b8e40dadcffc1b59eaa18bee2b782131f1
Diffstat (limited to 'i18npool/inc/transliteration_Ignore.hxx')
-rw-r--r--i18npool/inc/transliteration_Ignore.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/i18npool/inc/transliteration_Ignore.hxx b/i18npool/inc/transliteration_Ignore.hxx
index da3ed51a08fa..b610bf6b3807 100644
--- a/i18npool/inc/transliteration_Ignore.hxx
+++ b/i18npool/inc/transliteration_Ignore.hxx
@@ -24,13 +24,6 @@
typedef sal_Unicode (*TransFunc)(const sal_Unicode);
-typedef struct {
- sal_Unicode previousChar;
- sal_Unicode currentChar;
- sal_Unicode replaceChar;
- bool two2one;
-} Mapping;
-
namespace com { namespace sun { namespace star { namespace i18n {
class transliteration_Ignore : public transliteration_commonclass
@@ -68,6 +61,13 @@ public:
transliterateRange( const OUString& str1, const OUString& str2, XTransliteration& t1, XTransliteration& t2 )
throw(com::sun::star::uno::RuntimeException);
+ struct Mapping {
+ sal_Unicode previousChar;
+ sal_Unicode currentChar;
+ sal_Unicode replaceChar;
+ bool two2one;
+ };
+
protected:
TransFunc func;
oneToOneMapping *table;