summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_cell.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/kspread_cell.cc')
-rw-r--r--kspread/kspread_cell.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/kspread_cell.cc b/kspread/kspread_cell.cc
index a0ae2073..fdcf38be 100644
--- a/kspread/kspread_cell.cc
+++ b/kspread/kspread_cell.cc
@@ -5958,7 +5958,7 @@ bool Cell::loadOasis( const TQDomElement& element , KoOasisLoadingContext& oasis
return true;
}
-void Cell::loadOasisCellText( const TQDomElement& tqparent )
+void Cell::loadOasisCellText( const TQDomElement& parent )
{
//Search and load each paragraph of text. Each paragraph is separated by a line break
TQDomElement textParagraphElement;
@@ -5966,7 +5966,7 @@ void Cell::loadOasisCellText( const TQDomElement& tqparent )
bool multipleTextParagraphsFound=false;
- forEachElement( textParagraphElement , tqparent )
+ forEachElement( textParagraphElement , parent )
{
if ( textParagraphElement.localName()=="p" &&
textParagraphElement.namespaceURI()== KoXmlNS::text )
@@ -6010,9 +6010,9 @@ void Cell::loadOasisCellText( const TQDomElement& tqparent )
}
}
-void Cell::loadOasisObjects( const TQDomElement &tqparent, KoOasisLoadingContext& oasisContext )
+void Cell::loadOasisObjects( const TQDomElement &parent, KoOasisLoadingContext& oasisContext )
{
- for( TQDomElement e = tqparent; !e.isNull(); e = e.nextSibling().toElement() )
+ for( TQDomElement e = parent; !e.isNull(); e = e.nextSibling().toElement() )
{
if ( e.localName() == "frame" && e.namespaceURI() == KoXmlNS::draw )
{