diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/lib/kleo/job.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'certmanager/lib/kleo/job.h')
-rw-r--r-- | certmanager/lib/kleo/job.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/certmanager/lib/kleo/job.h b/certmanager/lib/kleo/job.h index ae65008b0..57d0592d6 100644 --- a/certmanager/lib/kleo/job.h +++ b/certmanager/lib/kleo/job.h @@ -33,8 +33,8 @@ #ifndef __KLEO_JOB_H__ #define __KLEO_JOB_H__ -#include <qobject.h> -#include <qstring.h> +#include <tqobject.h> +#include <tqstring.h> class QWidget; @@ -57,22 +57,22 @@ namespace Kleo { signal of subclasses will still be emitted, though, and will carry the information that the operation was canceled. */ - class Job : public QObject { + class Job : public TQObject { Q_OBJECT protected: - Job( QObject * parent, const char * name ); + Job( TQObject * parent, const char * name ); public: ~Job(); - virtual void showErrorDialog( QWidget * parent=0, const QString & caption=QString::null ) const; + virtual void showErrorDialog( TQWidget * parent=0, const TQString & caption=TQString::null ) const; - virtual QString auditLogAsHtml() const; + virtual TQString auditLogAsHtml() const; public slots: virtual void slotCancel() = 0; signals: - void progress( const QString & what, int current, int total ); + void progress( const TQString & what, int current, int total ); void done(); }; |