From ffe8a83e053396df448e9413828527613ca3bd46 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:46:43 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- khtml/dom/html_form.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'khtml/dom/html_form.cpp') diff --git a/khtml/dom/html_form.cpp b/khtml/dom/html_form.cpp index e1c94e6bf..5d9aec633 100644 --- a/khtml/dom/html_form.cpp +++ b/khtml/dom/html_form.cpp @@ -447,7 +447,7 @@ long HTMLInputElement::maxLength() const void HTMLInputElement::setMaxLength( long _maxLength ) { if(impl) { - DOMString value(QString::number(_maxLength)); + DOMString value(TQString::number(_maxLength)); ((ElementImpl *)impl)->setAttribute(ATTR_MAXLENGTH,value); } } @@ -495,7 +495,7 @@ long HTMLInputElement::getSize() const void HTMLInputElement::setSize( long value ) { - if(impl) static_cast(impl)->setAttribute(ATTR_SIZE, QString::number(value)); + if(impl) static_cast(impl)->setAttribute(ATTR_SIZE, TQString::number(value)); } DOMString HTMLInputElement::src() const @@ -897,7 +897,7 @@ void HTMLSelectElement::setSize( long _size ) { if(impl) { - DOMString value(QString::number(_size)); + DOMString value(TQString::number(_size)); static_cast(impl)->setAttribute(ATTR_SIZE,value); } } @@ -1009,7 +1009,7 @@ void HTMLTextAreaElement::setCols( long _cols ) { if(impl) { - DOMString value(QString::number(_cols)); + DOMString value(TQString::number(_cols)); static_cast(impl)->setAttribute(ATTR_COLS,value); } } @@ -1057,7 +1057,7 @@ void HTMLTextAreaElement::setRows( long _rows ) { if(impl) { - DOMString value(QString::number(_rows)); + DOMString value(TQString::number(_rows)); static_cast(impl)->setAttribute(ATTR_ROWS,value); } } -- cgit v1.2.3