MinGW warning fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31494 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -287,7 +287,7 @@ wxXmlDocument::wxXmlDocument()
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
|
wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
|
||||||
: wxObject(), m_root(NULL)
|
:wxObject(), m_root(NULL)
|
||||||
{
|
{
|
||||||
if ( !Load(filename, encoding) )
|
if ( !Load(filename, encoding) )
|
||||||
{
|
{
|
||||||
@@ -296,7 +296,7 @@ wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
|
wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
|
||||||
: wxObject(), m_root(NULL)
|
:wxObject(), m_root(NULL)
|
||||||
{
|
{
|
||||||
if ( !Load(stream, encoding) )
|
if ( !Load(stream, encoding) )
|
||||||
{
|
{
|
||||||
@@ -305,6 +305,7 @@ wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxXmlDocument::wxXmlDocument(const wxXmlDocument& doc)
|
wxXmlDocument::wxXmlDocument(const wxXmlDocument& doc)
|
||||||
|
:wxObject()
|
||||||
{
|
{
|
||||||
DoCopy(doc);
|
DoCopy(doc);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user