UIAction.h Line 139
bool Execute( ) const
{
// It's up to the programmer to ensure that the action is still valid by the time the user clicks on the
// button. Otherwise the user won't know why the action didn't take place!
if( CanExecute() )
{
return ExecuteAction.ExecuteIfBound(); //--- THIS LINE ---
}
return false;
}Last updated