diff options
Diffstat (limited to 'src/viewer.h')
-rw-r--r-- | src/viewer.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/viewer.h b/src/viewer.h index de0fcfc..f8ed799 100644 --- a/src/viewer.h +++ b/src/viewer.h @@ -8,18 +8,18 @@ #ifndef VIEWER_H #define VIEWER_H -#include <khtml_part.h> +#include <tdehtml_part.h> class KURL; -namespace KIO +namespace TDEIO { class MetaData; } namespace KlamAV { - class Viewer : public KHTMLPart + class Viewer : public TDEHTMLPart { Q_OBJECT public: @@ -27,8 +27,8 @@ namespace KlamAV virtual bool closeURL(); virtual bool openURL(const KURL &); - /** used by the BrowserRun object to call KHTMLPart::openURL() */ - void openPage(const KURL& url) { KHTMLPart::openURL(url);} + /** used by the BrowserRun object to call TDEHTMLPart::openURL() */ + void openPage(const KURL& url) { TDEHTMLPart::openURL(url);} public slots: @@ -72,7 +72,7 @@ namespace KlamAV virtual void slotOpenLinkInBackgroundTab(); /** This changes cursor to wait cursor */ - void slotStarted(KIO::Job *); + void slotStarted(TDEIO::Job *); /** This reverts cursor back to normal one */ void slotCompleted(); |