Fix python/c++ coding confusion!
Visual c++ does not support 'and' yet.
This commit is contained in:
parent
07f265a3bf
commit
bc87fe151e
1 changed files with 1 additions and 1 deletions
|
|
@ -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 + "\"";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue