summaryrefslogtreecommitdiff
path: root/i18npool/inc/transliteration_Ignore.hxx
diff options
context:
space:
mode:
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;