summaryrefslogtreecommitdiffstats
path: root/khtml/dom/html_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'khtml/dom/html_list.cpp')
-rw-r--r--khtml/dom/html_list.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/khtml/dom/html_list.cpp b/khtml/dom/html_list.cpp
index 4b6be0962..8d66fe3fc 100644
--- a/khtml/dom/html_list.cpp
+++ b/khtml/dom/html_list.cpp
@@ -169,7 +169,7 @@ long HTMLLIElement::value() const
void HTMLLIElement::setValue( long _value )
{
if(impl) {
- DOMString value(QString::number(_value));
+ DOMString value(TQString::number(_value));
((ElementImpl *)impl)->setAttribute(ATTR_VALUE,value);
}
}
@@ -278,7 +278,7 @@ void HTMLOListElement::setStart( long _start )
{
if(impl) {
- DOMString value(QString::number(_start));
+ DOMString value(TQString::number(_start));
((ElementImpl *)impl)->setAttribute(ATTR_START,value);
}
}