Fix python/c++ coding confusion!

Visual c++ does not support 'and' yet.
This commit is contained in:
William S Fulton 2022-10-06 00:45:53 +01:00
commit bc87fe151e

View file

@ -464,7 +464,7 @@ void JavaDocConverter::handleTagImage(DoxygenEntity &tag, std::string &translate
title = it->data;
translatedComment += "<img src=";
if (file.size() >= 2 && file[0] == '"' and file[file.size() - 1] == '"')
if (file.size() >= 2 && file[0] == '"' && file[file.size() - 1] == '"')
translatedComment += file;
else
translatedComment += "\"" + file + "\"";