diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-29 16:24:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-30 08:43:04 +0200 |
commit | 22f2cf3ccc6d0c9ba2c2860735e789d6b3a25f72 (patch) | |
tree | f20474881dd71d3f815a964718a3b7dbcc53340a /include/svx/fmtools.hxx | |
parent | f9f7cc62e95f12a9d4ea02413a658d40e09ccde6 (diff) |
implement std::hash for css::uno::Reference and rtl::Reference
The declaration in BarChart.cxx is particularly suspicious, because it
was using a < for the KeyEqual template parameter.
Been there since:
commit b2c3233e5f267b5d244d722a94424a3b224b3314
Date: Thu Dec 21 20:08:33 2017 +0900
chart2: suspend/resume setting rects dirty for 3D shapes
comphelper::OInterfaceCompare is no longer necessary
Change-Id: I8278c4a3d9113a18570ca237cd05d553ec8f3975
Reviewed-on: https://gerrit.libreoffice.org/71537
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/fmtools.hxx')
-rw-r--r-- | include/svx/fmtools.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/svx/fmtools.hxx b/include/svx/fmtools.hxx index 000f3032ca83..6322cc3720d0 100644 --- a/include/svx/fmtools.hxx +++ b/include/svx/fmtools.hxx @@ -58,7 +58,6 @@ #include <rtl/ref.hxx> #include <tools/wintypes.hxx> #include <cppuhelper/weakref.hxx> -#include <comphelper/stl_types.hxx> #include <cppuhelper/implbase.hxx> #include <set> @@ -189,9 +188,7 @@ bool isRowSetAlive(const css::uno::Reference< css::uno::XInterface>& _rxRowSet); // checks if the css::sdbcx::XColumnsSupplier provided by _rxRowSet supplies any columns -typedef ::std::set < css::uno::Reference< css::uno::XInterface > - , ::comphelper::OInterfaceCompare< css::uno::XInterface > - > InterfaceBag; +typedef ::std::set< css::uno::Reference< css::uno::XInterface > > InterfaceBag; #endif // INCLUDED_SVX_FMTOOLS_HXX |