[LyX/master] Fix bug #11635

Jean-Marc Lasgouttes lasgouttes at lyx.org
Thu Apr 16 21:30:14 UTC 2020


Le 16/04/2020 à 22:56, Richard Kimberly Heck a écrit :
>   bool LyXComm::loadFilesInOtherInstance()
>   {
> +	if (theFilesToLoad().size() == 0)
> +		return true;
> +


The following seems nicer to me:
	if (theFilesToLoad().empty())
		return true;

JMarc


More information about the lyx-cvs mailing list