Update release

This commit is contained in:
Zihan Chen
2020-12-22 16:59:17 -08:00
parent 4fbb25c072
commit cea0a05d88
8 changed files with 6 additions and 3 deletions

View File

@@ -20884,7 +20884,10 @@ GuiMenuButton
void GuiMenuButton::SetSubMenu(GuiMenu* value, bool owned)
{
DetachSubMenu();
if(subMenu)
{
DetachSubMenu();
}
subMenu=value;
ownedSubMenu=owned;
if(subMenu)

View File

@@ -635,8 +635,8 @@ RegexLexerWalker
vint RegexLexerWalker::GetRelatedToken(vint state)const
{
vint finalState=state==-1?-1:pure->GetRelatedFinalState(state);
return finalState==-1?-1:stateTokens.Get(finalState);
vint finalState = state == -1 ? -1 : pure->GetRelatedFinalState(state);
return finalState == -1 ? -1 : stateTokens.Get(finalState);
}
void RegexLexerWalker::Walk(wchar_t input, vint& state, vint& token, bool& finalState, bool& previousTokenStop)const

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.