summaryrefslogtreecommitdiff
path: root/vcl/inc/widgetdraw/WidgetDefinition.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/widgetdraw/WidgetDefinition.hxx')
-rw-r--r--vcl/inc/widgetdraw/WidgetDefinition.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/widgetdraw/WidgetDefinition.hxx b/vcl/inc/widgetdraw/WidgetDefinition.hxx
index cc3eb6606557..65a4dcb32c29 100644
--- a/vcl/inc/widgetdraw/WidgetDefinition.hxx
+++ b/vcl/inc/widgetdraw/WidgetDefinition.hxx
@@ -18,7 +18,7 @@
#include <unordered_map>
#include <vector>
#include <cstddef>
-#include <boost/functional/hash.hpp>
+#include <o3tl/hash_combine.hxx>
#include <vcl/salnativewidgets.hxx>
namespace vcl
@@ -145,8 +145,8 @@ template <> struct VCL_DLLPUBLIC hash<vcl::ControlTypeAndPart>
std::size_t operator()(vcl::ControlTypeAndPart const& rControlTypeAndPart) const noexcept
{
std::size_t seed = 0;
- boost::hash_combine(seed, rControlTypeAndPart.meType);
- boost::hash_combine(seed, rControlTypeAndPart.mePart);
+ o3tl::hash_combine(seed, rControlTypeAndPart.meType);
+ o3tl::hash_combine(seed, rControlTypeAndPart.mePart);
return seed;
}
};