summaryrefslogtreecommitdiffstats
path: root/filters/kword/pdf/data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters/kword/pdf/data.cpp')
-rw-r--r--filters/kword/pdf/data.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/filters/kword/pdf/data.cpp b/filters/kword/pdf/data.cpp
index 3c7caae43..3236aa399 100644
--- a/filters/kword/pdf/data.cpp
+++ b/filters/kword/pdf/data.cpp
@@ -189,13 +189,13 @@ void Data::createParagraph(const TQString &text, ParagraphType type,
textElement.appendChild( _document.createTextNode(text) );
paragraph.appendChild(textElement);
- TQDomElement tqlayout = _document.createElement("LAYOUT");
- paragraph.appendChild(tqlayout);
+ TQDomElement layout = _document.createElement("LAYOUT");
+ paragraph.appendChild(layout);
TQDomElement element = _document.createElement("NAME");
element.setAttribute("value", "Standard");
- tqlayout.appendChild(element);
+ layout.appendChild(element);
for (uint i=0; i<layouts.size(); i++)
- tqlayout.appendChild(layouts[i]);
+ layout.appendChild(layouts[i]);
if ( formats.size() ) {
TQDomElement format = _document.createElement("FORMATS");