From 703fb0c89c2eee56a1e613e67a446db9d4287929 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:35:07 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- khtml/html/html_formimpl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'khtml/html') diff --git a/khtml/html/html_formimpl.cpp b/khtml/html/html_formimpl.cpp index 7477679bc..c7c232dc9 100644 --- a/khtml/html/html_formimpl.cpp +++ b/khtml/html/html_formimpl.cpp @@ -1615,16 +1615,16 @@ bool HTMLInputElementImpl::encoding(const TQTextCodec* codec, khtml::encodingLis fileurl = KURL::fromPathOrURL(val); } - KIO::UDSEntry filestat; + TDEIO::UDSEntry filestat; // can't submit file in www-url-form encoded TQWidget* const toplevel = static_cast(m_render)->widget()->topLevelWidget(); if (multipart) { TQCString filearray( "" ); - if ( KIO::NetAccess::stat(fileurl, filestat, toplevel)) { + if ( TDEIO::NetAccess::stat(fileurl, filestat, toplevel)) { const KFileItem fileitem(filestat, fileurl, true, false); if ( fileitem.isFile() && - KIO::NetAccess::download(fileurl, local, toplevel) ) { + TDEIO::NetAccess::download(fileurl, local, toplevel) ) { TQFile file(local); filearray.resize(file.size()+1); if ( file.open( IO_ReadOnly ) ) { @@ -1633,7 +1633,7 @@ bool HTMLInputElementImpl::encoding(const TQTextCodec* codec, khtml::encodingLis filearray[readbytes] = '\0'; file.close(); } - KIO::NetAccess::removeTempFile( local ); + TDEIO::NetAccess::removeTempFile( local ); } } encoding += filearray; -- cgit v1.2.3