From 340bbea71dae6170677943cfaac211288c4a54bb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 10 Jan 2024 18:07:36 +0100 Subject: [PATCH] Remove irrelevant mentions of encoding from wxXmlDocument docs The corresponding parameter was removed in cc8fbeed56 (Merge branch 'xml-conv-simplify', 2024-01-07) but it was still mentioned in the description. --- interface/wx/xml/xml.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/xml/xml.h b/interface/wx/xml/xml.h index 0d6b5a960a..88c66712a4 100644 --- a/interface/wx/xml/xml.h +++ b/interface/wx/xml/xml.h @@ -709,12 +709,12 @@ public: wxXmlDocument(const wxXmlDocument& doc); /** - Loads the given filename using the given encoding. See Load(). + Loads the given filename. See Load(). */ wxXmlDocument(const wxString& filename); /** - Loads the XML document from given stream using the given encoding. See Load(). + Loads the XML document from given stream. See Load(). */ wxXmlDocument(wxInputStream& stream);