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/row.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/src/widget/row.rs') diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs index 405ba001..31f7472f 100644 --- a/native/src/widget/row.rs +++ b/native/src/widget/row.rs @@ -191,8 +191,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct RowWidget; - std::any::TypeId::of::().hash(state); + struct Marker; + std::any::TypeId::of::().hash(state); self.width.hash(state); self.height.hash(state); -- cgit