diff options
Diffstat (limited to 'src/modules/xml')
-rw-r--r-- | src/modules/xml/xmlApi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/xml/xmlApi.cpp b/src/modules/xml/xmlApi.cpp index 16cb936090..c574da4f6d 100644 --- a/src/modules/xml/xmlApi.cpp +++ b/src/modules/xml/xmlApi.cpp @@ -240,7 +240,7 @@ static int xmlapiGetElement( HXML _n, XML_ELEMENT_POS pos, XML_ELEMENT_TYPE *typ if ( !type || pos >= XMLNode(_n).nElement())
return false;
- XMLNodeContents c( XMLNode(_n).enumContents( ( XMLElementPosition )pos ));
+ XMLNodeContents c( XMLNode(_n).enumContents(( XMLElementPosition )pos ));
switch ( c.etype ) {
case eNodeChild:
{
|