From fab2fb86ca5016b0969fd6995c68b36b69403b83 Mon Sep 17 00:00:00 2001 From: cxl Date: Sun, 16 Jun 2019 09:20:42 +0000 Subject: [PATCH] RichText: fixed to compile with new Uuid git-svn-id: svn://ultimatepp.org/upp/trunk@13399 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/RichText/TextStyle.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/uppsrc/RichText/TextStyle.cpp b/uppsrc/RichText/TextStyle.cpp index 50ddb4c4e..0bf8a3394 100644 --- a/uppsrc/RichText/TextStyle.cpp +++ b/uppsrc/RichText/TextStyle.cpp @@ -10,10 +10,7 @@ const RichStyle& RichStyle::GetDefault() Uuid RichStyle::GetDefaultId() { Uuid id; - id.a = 0; - id.b = 0; - id.c = 0; - id.d = 0; + id.SetNull(); return id; }