diff options
author | serval <serval2412@yahoo.fr> | 2010-12-22 21:33:57 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-23 12:59:01 +0000 |
commit | 52b91b63035eb7c45e6fce2803541f552326863a (patch) | |
tree | e507e35a84e98e18d0d0efccd342d165c98764eb /linguistic/source/iprcache.cxx | |
parent | a3d9e49021a6965ff2fb0b5c625baedaf6327a02 (diff) |
RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'linguistic/source/iprcache.cxx')
-rw-r--r-- | linguistic/source/iprcache.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/iprcache.cxx b/linguistic/source/iprcache.cxx index 08d57c3ab784..f689534d1290 100644 --- a/linguistic/source/iprcache.cxx +++ b/linguistic/source/iprcache.cxx @@ -100,7 +100,7 @@ static void lcl_AddAsPropertyChangeListener( for (int i = 0; i < NUM_FLUSH_PROPS; ++i) { rPropSet->addPropertyChangeListener( - A2OU(aFlushProperties[i].pPropName), xListener ); + ::rtl::OUString::createFromAscii(aFlushProperties[i].pPropName), xListener ); } } } @@ -115,7 +115,7 @@ static void lcl_RemoveAsPropertyChangeListener( for (int i = 0; i < NUM_FLUSH_PROPS; ++i) { rPropSet->removePropertyChangeListener( - A2OU(aFlushProperties[i].pPropName), xListener ); + ::rtl::OUString::createFromAscii(aFlushProperties[i].pPropName), xListener ); } } } |