merge the formfield patch from ooo-build
[ooovba.git] / i18npool / source / transliteration / ignoreMinusSign_ja_JP.cxx
blobed026405104ecd927ec2430fbddddfd68804bc44
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ignoreMinusSign_ja_JP.cxx,v $
10 * $Revision: 1.11 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_i18npool.hxx"
34 // prevent internal compiler error with MSVC6SP3
35 #include <utility>
37 #define TRANSLITERATION_MinusSign_ja_JP
38 #include <transliteration_Ignore.hxx>
40 namespace com { namespace sun { namespace star { namespace i18n {
42 sal_Unicode
43 ignoreMinusSign_ja_JP_translator (const sal_Unicode c)
45 switch (c) {
46 case 0x2212: // MINUS SIGN
47 case 0x002d: // HYPHEN-MINUS
48 case 0x2010: // HYPHEN
49 case 0x2011: // NON-BREAKING HYPHEN
50 case 0x2012: // FIGURE DASH
51 case 0x2013: // EN DASH
52 case 0x2014: // EM DASH
53 case 0x2015: // HORIZONTAL BAR
54 case 0xff0d: // FULLWIDTH HYPHEN-MINUS
55 case 0xff70: // HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
56 return 0x30fc; // KATAKANA-HIRAGANA PROLONGED SOUND MARK
58 return c;
61 ignoreMinusSign_ja_JP::ignoreMinusSign_ja_JP()
63 func = ignoreMinusSign_ja_JP_translator;
64 table = 0;
65 map = 0;
66 transliterationName = "ignoreMinusSign_ja_JP";
67 implementationName = "com.sun.star.i18n.Transliteration.ignoreMinusSign_ja_JP";
70 } } } }