X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b1a3a964997a143de68f2e3c75fa8dd82a4e3361..8515098c75e1fe9aa95e593c7924f3298e6b6dc1:/src/html/htmltag.cpp diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp index 4365a26554..d063137043 100644 --- a/src/html/htmltag.cpp +++ b/src/html/htmltag.cpp @@ -431,12 +431,12 @@ bool wxHtmlTag::HasParam(const wxString& par) const return (m_ParamNames.Index(par, false) != wxNOT_FOUND); } -wxString wxHtmlTag::GetParam(const wxString& par, bool with_commas) const +wxString wxHtmlTag::GetParam(const wxString& par, bool with_quotes) const { int index = m_ParamNames.Index(par, false); if (index == wxNOT_FOUND) return wxGetEmptyString(); - if (with_commas) + if (with_quotes) { // VS: backward compatibility, seems to be never used by wxHTML... wxString s;