Commit f839ba95 authored by Dick Hollenbeck's avatar Dick Hollenbeck
Browse files

Use wxXmlNode::GetProperties() and not GetAttributes() since the former is...

Use wxXmlNode::GetProperties() and not GetAttributes() since the former is more widely available in older wxXml libs
parent 36575c0e
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@
#include "xnode.h"
#include "macros.h"


typedef wxXmlProperty   XATTR;
#define GetAttribs      GetProperties

void XNODE::Format( OUTPUTFORMATTER* out, int nestLevel ) throw( IOError )
{
@@ -53,7 +53,7 @@ void XNODE::FormatContents( OUTPUTFORMATTER* out, int nestLevel ) throw( IOError
    std::string utf8;

    // output attributes first if they exist
    for( XATTR* attr = (XATTR*) GetAttributes();  attr;  attr = (XATTR*) attr->GetNext() )
    for( XATTR* attr = (XATTR*) GetAttribs();  attr;  attr = (XATTR*) attr->GetNext() )
    {
        utf8  = CONV_TO_UTF8( attr->GetValue() );   // capture the content

@@ -94,5 +94,4 @@ void XNODE::FormatContents( OUTPUTFORMATTER* out, int nestLevel ) throw( IOError
    }
}


// EOF