diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:35:57 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:35:57 -0400 |
commit | 66d882b3c87d82da82a32f1fabb8c9f8471e1847 (patch) | |
tree | 92366557528ffcfdffdd7f747ca45a9d67f22022 /sd/inc/CustomAnimationPreset.hxx | |
parent | b2773c8dbae4e37348cc032a55d962149a1d9d0d (diff) |
Use rtl::OUStringHash.
Diffstat (limited to 'sd/inc/CustomAnimationPreset.hxx')
-rw-r--r-- | sd/inc/CustomAnimationPreset.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/CustomAnimationPreset.hxx b/sd/inc/CustomAnimationPreset.hxx index b350a7f81c91..4b8aed0a4f19 100644 --- a/sd/inc/CustomAnimationPreset.hxx +++ b/sd/inc/CustomAnimationPreset.hxx @@ -40,8 +40,8 @@ namespace sd { -typedef boost::unordered_map< rtl::OUString, CustomAnimationEffectPtr, comphelper::UStringHash, comphelper::UStringEqual > EffectsSubTypeMap; -typedef boost::unordered_map< rtl::OUString, rtl::OUString, comphelper::UStringHash, comphelper::UStringEqual > UStringMap; +typedef boost::unordered_map< rtl::OUString, CustomAnimationEffectPtr, rtl::OUStringHash, comphelper::UStringEqual > EffectsSubTypeMap; +typedef boost::unordered_map< rtl::OUString, rtl::OUString, rtl::OUStringHash, comphelper::UStringEqual > UStringMap; typedef std::vector< rtl::OUString > UStringList; class CustomAnimationPreset @@ -80,7 +80,7 @@ private: }; typedef boost::shared_ptr< CustomAnimationPreset > CustomAnimationPresetPtr; -typedef boost::unordered_map<rtl::OUString, CustomAnimationPresetPtr, comphelper::UStringHash, comphelper::UStringEqual> EffectDescriptorMap; +typedef boost::unordered_map<rtl::OUString, CustomAnimationPresetPtr, rtl::OUStringHash, comphelper::UStringEqual> EffectDescriptorMap; typedef std::vector< CustomAnimationPresetPtr > EffectDescriptorList; struct PresetCategory |