diff options
Diffstat (limited to 'konq-plugins/webarchiver/archivedialog.cpp')
-rw-r--r-- | konq-plugins/webarchiver/archivedialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/webarchiver/archivedialog.cpp b/konq-plugins/webarchiver/archivedialog.cpp index 4c83c43..9048d67 100644 --- a/konq-plugins/webarchiver/archivedialog.cpp +++ b/konq-plugins/webarchiver/archivedialog.cpp @@ -50,7 +50,7 @@ #define CONTENT_TYPE "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">" ArchiveDialog::ArchiveDialog(TQWidget *parent, const TQString &filename, - KHTMLPart *part) : + TDEHTMLPart *part) : KDialogBase(parent, "WebArchiveDialog", false, i18n("Web Archiver"), KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::User1 ), m_bPreserveWS(false), m_tmpFile(0), m_url(part->url()) @@ -271,7 +271,7 @@ void ArchiveDialog::saveArchiveRecursive(const DOM::Node &pNode, const KURL& bas /* Going recursively down creating a DOM-Tree for the Frame, second Level of recursion */ //## Add Termination criteria, on the other hand frames are not indefinetly nested, are they :) - KHTMLPart* part = new KHTMLPart(); + TDEHTMLPart* part = new TDEHTMLPart(); KURL absoluteURL = getAbsoluteURL(baseURL, attrValue); part->openURL(absoluteURL); saveFile(getUniqueFileName(absoluteURL.fileName()), part); |