diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 22:41:06 +0900 |
commit | efa55080160c7b88c4052c2567439c324f646614 (patch) | |
tree | 6f894bc54817f27de8bca8d9d412dcfa3d5c8c88 /kmail/acljobs.h | |
parent | fd4746cdc3b8d6aafd50a5d7fa009caa8c05b85c (diff) | |
download | tdepim-efa55080160c7b88c4052c2567439c324f646614.tar.gz tdepim-efa55080160c7b88c4052c2567439c324f646614.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cd4b0ac22608120ad003f575a1640e1ddc7703df)
Diffstat (limited to 'kmail/acljobs.h')
-rw-r--r-- | kmail/acljobs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/acljobs.h b/kmail/acljobs.h index dd9883436..025fc1685 100644 --- a/kmail/acljobs.h +++ b/kmail/acljobs.h @@ -107,7 +107,7 @@ namespace ACLJobs { /// List all ACLs for a given url class GetACLJob : public TDEIO::SimpleJob { - Q_OBJECT + TQ_OBJECT public: GetACLJob( const KURL& url, const TQByteArray &packedArgs, @@ -124,7 +124,7 @@ namespace ACLJobs { /// Get the users' rights for a given url class GetUserRightsJob : public TDEIO::SimpleJob { - Q_OBJECT + TQ_OBJECT public: GetUserRightsJob( const KURL& url, const TQByteArray &packedArgs, @@ -141,7 +141,7 @@ namespace ACLJobs { /// This class only exists to store the userid in the job class DeleteACLJob : public TDEIO::SimpleJob { - Q_OBJECT + TQ_OBJECT public: DeleteACLJob( const KURL& url, const TQString& userId, @@ -156,7 +156,7 @@ namespace ACLJobs { /// Set and delete a list of permissions for different users on a given url class MultiSetACLJob : public TDEIO::Job { - Q_OBJECT + TQ_OBJECT public: |