diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kdesktop/kwebdesktop/kwebdesktop.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdesktop/kwebdesktop/kwebdesktop.h')
-rw-r--r-- | kdesktop/kwebdesktop/kwebdesktop.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdesktop/kwebdesktop/kwebdesktop.h b/kdesktop/kwebdesktop/kwebdesktop.h index d364f8022..7ec81338e 100644 --- a/kdesktop/kwebdesktop/kwebdesktop.h +++ b/kdesktop/kwebdesktop/kwebdesktop.h @@ -19,8 +19,8 @@ #ifndef KWEBDESKTOP_H #define KWEBDESKTOP_H -#include <qobject.h> -#include <qcstring.h> +#include <tqobject.h> +#include <tqcstring.h> #include <kparts/browserextension.h> #include <khtml_part.h> @@ -30,22 +30,22 @@ class KWebDesktop : public QObject { Q_OBJECT public: - KWebDesktop( QObject* parent, const QCString & imageFile, int width, int height ) - : QObject( parent ), + KWebDesktop( TQObject* parent, const TQCString & imageFile, int width, int height ) + : TQObject( parent ), m_part( 0 ), m_imageFile( imageFile ), m_width( width ), m_height( height ) {} ~KWebDesktop(); - KParts::ReadOnlyPart* createPart( const QString& mimeType ); + KParts::ReadOnlyPart* createPart( const TQString& mimeType ); private slots: void slotCompleted(); private: KParts::ReadOnlyPart* m_part; - QCString m_imageFile; + TQCString m_imageFile; int m_width; int m_height; }; @@ -59,7 +59,7 @@ public: ~KWebDesktopRun() {} protected slots: - void slotMimetype( KIO::Job *job, const QString &_type ); + void slotMimetype( KIO::Job *job, const TQString &_type ); void slotFinished( KIO::Job * job ); private: |