summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/propertysheet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmrml/kmrml/propertysheet.cpp')
-rw-r--r--kmrml/kmrml/propertysheet.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmrml/kmrml/propertysheet.cpp b/kmrml/kmrml/propertysheet.cpp
index af913558..dba9d531 100644
--- a/kmrml/kmrml/propertysheet.cpp
+++ b/kmrml/kmrml/propertysheet.cpp
@@ -98,10 +98,10 @@ void PropertySheet::initFromDOM( const TQDomElement& elem )
m_minSubsetSize = toInt( elem.attribute( MrmlShared::minSubsetSize() ));
m_maxSubsetSize = toInt( elem.attribute( MrmlShared::maxSubsetSize() ));
- TQValueList<TQDomElement> children =
+ TQValueList<TQDomElement> tqchildren =
KMrml::directChildElements( elem, MrmlShared::propertySheet() );
- TQValueListConstIterator<TQDomElement> it = children.begin();
- for ( ; it != children.end(); ++it )
+ TQValueListConstIterator<TQDomElement> it = tqchildren.begin();
+ for ( ; it != tqchildren.end(); ++it )
m_subSheets.append( new PropertySheet( *it ) );
}
@@ -190,7 +190,7 @@ PropertySheet::SendType PropertySheet::getSendType( const TQString& value )
type = AttributeName;
else if ( value == MrmlShared::attributeValue() )
type = AttributeValue;
- else if ( value == MrmlShared::children() )
+ else if ( value == MrmlShared::tqchildren() )
type = Children;
else if ( value == MrmlShared::none() )
type = None;