summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/specialjob.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/lib/kleo/specialjob.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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/specialjob.h')
-rw-r--r--certmanager/lib/kleo/specialjob.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/certmanager/lib/kleo/specialjob.h b/certmanager/lib/kleo/specialjob.h
index e7280b0a5..04867c32b 100644
--- a/certmanager/lib/kleo/specialjob.h
+++ b/certmanager/lib/kleo/specialjob.h
@@ -49,10 +49,10 @@ namespace Kleo {
signals to suitable slots and then start the job with a call to
start(). This call might fail, in which case the SpecialJob
instance will have schedules its own destruction with a call to
- QObject::deleteLater().
+ TQObject::deleteLater().
After result() is emitted, the SpecialJob will schedule its own
- destruction by calling QObject::deleteLater().
+ destruction by calling TQObject::deleteLater().
Parameters are set using the Qt property system. More general, or
constructor parameters are given in the call to
@@ -65,7 +65,7 @@ namespace Kleo {
class SpecialJob : public Job {
Q_OBJECT
protected:
- SpecialJob( QObject * parent, const char * name );
+ SpecialJob( TQObject * parent, const char * name );
public:
~SpecialJob();
@@ -78,7 +78,7 @@ namespace Kleo {
virtual GpgME::Error exec() = 0;
signals:
- void result( const GpgME::Error & result, const QVariant & data );
+ void result( const GpgME::Error & result, const TQVariant & data );
};
}