Skip to content

Commit

Permalink
try fix windows build, yuni string renewable
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Feb 15, 2024
1 parent b4a6eac commit 1600122
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ bool RenewableClusterSummarySingleArea::cellValue(int x, int y, const String& v)
{
case 0:
{
if (cluster->group() != v)
std::string group = cluster->group().c_str();
std::string v_string;
if (group != v_string)
{
cluster->setGroup(v);
return true;
Expand Down

0 comments on commit 1600122

Please sign in to comment.