diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-04-13 13:46:19 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-04-13 20:47:55 -0300 |
commit | 120786aea28b73870633affebf88ae4fb7ffac7a (patch) | |
tree | 7f7075442cf22bef4c82778ae790b4a1bf0af282 /sd/source/ui/func | |
parent | 092a90517889ff7b66a4e7229b897e381bf167f9 (diff) |
Remove some A2S and C2U macros in sd
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fuhhconv.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sd/source/ui/func/fuhhconv.cxx b/sd/source/ui/func/fuhhconv.cxx index 4e53fc16f62e..953d0e7cb0e3 100644 --- a/sd/source/ui/func/fuhhconv.cxx +++ b/sd/source/ui/func/fuhhconv.cxx @@ -52,7 +52,6 @@ class SfxRequest; -#define C2U(cChar) rtl::OUString::createFromAscii(cChar) using namespace ::com::sun::star; using namespace ::com::sun::star::beans; @@ -256,9 +255,9 @@ void FuHangulHanjaConversion::StartChineseConversion() { try { - xProp->getPropertyValue( C2U("IsDirectionToSimplified") ) >>= bToSimplified; - xProp->getPropertyValue( C2U("IsUseCharacterVariants") ) >>= bUseVariants; - xProp->getPropertyValue( C2U("IsTranslateCommonTerms") ) >>= bCommonTerms; + xProp->getPropertyValue( "IsDirectionToSimplified" ) >>= bToSimplified; + xProp->getPropertyValue( "IsUseCharacterVariants" ) >>= bUseVariants; + xProp->getPropertyValue( "IsTranslateCommonTerms" ) >>= bCommonTerms; } catch( Exception& ) { |