From d9645bf8a1c1c95aeeb9a90b89387d82795f56dd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 11 Sep 2014 12:53:25 +0200 Subject: Prevent erroneous pick up of unrelated css::i18n::Maping ...from include/i18nutil/casefolding.hxx Change-Id: I892a83b8e40dadcffc1b59eaa18bee2b782131f1 --- i18npool/inc/transliteration_Ignore.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'i18npool/inc/transliteration_Ignore.hxx') 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; -- cgit