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