diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 11:57:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 12:03:59 +0100 |
commit | 0fa31bed9a7a0666df26a1016d74df3ec15b40f9 (patch) | |
tree | 679aea468eef96285855e2a4b7316ee2f0de37d6 /framework | |
parent | 4ae9b3ab10c882bd9c25b1f1303325a0ecd7fc06 (diff) |
Default OMultiTypeInferfaceContainerHelperVar equalImpl parameter
...and assorted OUStringHash clean up
Change-Id: I779904e1275e8df88f567beb388d1d11af9e9671
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/dispatch/menudispatcher.hxx | 3 | ||||
-rw-r--r-- | framework/inc/dispatch/popupmenudispatcher.hxx | 3 | ||||
-rw-r--r-- | framework/inc/stdtypes.h | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/framework/inc/dispatch/menudispatcher.hxx b/framework/inc/dispatch/menudispatcher.hxx index 21f1da739b25..7a957d5fa233 100644 --- a/framework/inc/dispatch/menudispatcher.hxx +++ b/framework/inc/dispatch/menudispatcher.hxx @@ -54,8 +54,7 @@ namespace framework{ *//*-*************************************************************************************************************/ typedef ::cppu::OMultiTypeInterfaceContainerHelperVar< OUString , - OUStringHash, - std::equal_to< OUString > > IMPL_ListenerHashContainer; + OUStringHash > IMPL_ListenerHashContainer; /*-************************************************************************************************************//** diff --git a/framework/inc/dispatch/popupmenudispatcher.hxx b/framework/inc/dispatch/popupmenudispatcher.hxx index 6fafe87b8f42..c2fe7de91ef5 100644 --- a/framework/inc/dispatch/popupmenudispatcher.hxx +++ b/framework/inc/dispatch/popupmenudispatcher.hxx @@ -57,8 +57,7 @@ namespace framework{ *//*-*************************************************************************************************************/ typedef ::cppu::OMultiTypeInterfaceContainerHelperVar< OUString , - OUStringHash, - std::equal_to< OUString > > IMPL_ListenerHashContainer; + OUStringHash > IMPL_ListenerHashContainer; /*-************************************************************************************************************//** diff --git a/framework/inc/stdtypes.h b/framework/inc/stdtypes.h index 7a5f08f18628..79523bb4f523 100644 --- a/framework/inc/stdtypes.h +++ b/framework/inc/stdtypes.h @@ -170,8 +170,7 @@ typedef BaseHash< sal_Int32 > NameToHandleHash; So it's better to declare it one times only! */ typedef ::cppu::OMultiTypeInterfaceContainerHelperVar< OUString , - OUStringHash, - ::std::equal_to< OUString > > ListenerHash; + OUStringHash > ListenerHash; } // namespace framework |