diff options
author | Thomas Lange <tl@openoffice.org> | 2009-07-13 12:48:12 +0000 |
---|---|---|
committer | Thomas Lange <tl@openoffice.org> | 2009-07-13 12:48:12 +0000 |
commit | ca470616a625f0e8edaafa4b91d1a3fc79304c46 (patch) | |
tree | 909d61d38f8e52f1b1646f8e3435d71dc89631de /sw/source/ui/shells/textsh.cxx | |
parent | 40adaff038edd3c03fb20d94c0c54e79229b671a (diff) |
undoing r273933 which was accidently commited on master m51ooo/DEV300_m51
Diffstat (limited to 'sw/source/ui/shells/textsh.cxx')
-rw-r--r-- | sw/source/ui/shells/textsh.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/shells/textsh.cxx b/sw/source/ui/shells/textsh.cxx index b8bf1a15ca..046beba2ca 100644 --- a/sw/source/ui/shells/textsh.cxx +++ b/sw/source/ui/shells/textsh.cxx @@ -71,8 +71,9 @@ #include <svx/htmlmode.hxx> #include <svx/pfiledlg.hxx> #include <svx/htmlcfg.hxx> -#include <com/sun/star/i18n/TransliterationModules.hpp> -#include <com/sun/star/i18n/TransliterationModulesExtra.hpp> +#ifndef _COM_SUN_STAR_I18N_TRANSLITERATIONMODULES_HDL_ +#include <com/sun/star/i18n/TransliterationModules.hdl> +#endif #include <sot/clsids.hxx> #include <svx/acorrcfg.hxx> @@ -1050,15 +1051,14 @@ void SwTextShell::ExecTransliteration( SfxRequest & rReq ) case SID_TRANSLITERATE_LOWER: nMode = TransliterationModules_UPPERCASE_LOWERCASE; break; - case SID_TRANSLITERATE_SENTENCE_CASE: - nMode = TransliterationModulesExtra::SENTENCE_CASE; - break; + case SID_TRANSLITERATE_HALFWIDTH: nMode = TransliterationModules_FULLWIDTH_HALFWIDTH; break; case SID_TRANSLITERATE_FULLWIDTH: nMode = TransliterationModules_HALFWIDTH_FULLWIDTH; break; + case SID_TRANSLITERATE_HIRAGANA: nMode = TransliterationModules_KATAKANA_HIRAGANA; break; |