From 41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef Mon Sep 17 00:00:00 2001 From: Olivier Pinon Date: Sun, 12 Apr 2020 01:20:40 +0200 Subject: #288 Renamed XXXWidget to Marker --- native/src/widget/radio.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/src/widget/radio.rs') diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs index c1e36e3d..0ec621bf 100644 --- a/native/src/widget/radio.rs +++ b/native/src/widget/radio.rs @@ -174,8 +174,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct RadioWidget; - std::any::TypeId::of::().hash(state); + struct Marker; + std::any::TypeId::of::().hash(state); self.label.hash(state); } -- cgit