From 3c8d5c8f732239a8b50418be27464e30b9dddeae Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 17 Oct 2025 08:37:30 +0800 Subject: Exception remove string. --- src/ui/style/StyleRuleSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui/style/StyleRuleSet.cpp') diff --git a/src/ui/style/StyleRuleSet.cpp b/src/ui/style/StyleRuleSet.cpp index 5468949a..b7a82577 100644 --- a/src/ui/style/StyleRuleSet.cpp +++ b/src/ui/style/StyleRuleSet.cpp @@ -27,7 +27,7 @@ StyleRuleSet::StyleRuleSet(std::shared_ptr parent) { void StyleRuleSet::SetParent(std::shared_ptr parent) { if (parent == parent_) return; if (CheckCycle(this, parent.get())) { - throw Exception(u"Cycle detected in StyleRuleSet parent."); + throw Exception("Cycle detected in StyleRuleSet parent."); } parent_change_event_guard_.Reset(); parent_ = std::move(parent); -- cgit v1.2.3