diff options
author | Mavridis Philippe <[email protected]> | 2021-01-13 19:34:09 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-01-13 19:34:09 +0200 |
commit | 4c04a441814c7d1dda08f6075ab4e09dc05541df (patch) | |
tree | cf8a3dbd77114c416255d3995cd1b047072ef26a /src/viewer.h | |
parent | 357ddeb8afd82d69ef871c146f4fc8f2c67fb17e (diff) | |
download | klamav-4c04a441814c7d1dda08f6075ab4e09dc05541df.tar.gz klamav-4c04a441814c7d1dda08f6075ab4e09dc05541df.zip |
Conversion KDE3->TDE
Signed-off-by: Mavridis Philippe <[email protected]>
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(); |