summaryrefslogtreecommitdiffstats
path: root/kresources/scalix/scalixadmin/jobs.h
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/scalix/scalixadmin/jobs.h')
-rw-r--r--kresources/scalix/scalixadmin/jobs.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/kresources/scalix/scalixadmin/jobs.h b/kresources/scalix/scalixadmin/jobs.h
index 27efbb72..0c73fb50 100644
--- a/kresources/scalix/scalixadmin/jobs.h
+++ b/kresources/scalix/scalixadmin/jobs.h
@@ -66,37 +66,37 @@ namespace Scalix {
/**
* Sets/Changes the password of the user encoded in @p url.
*/
- SetPasswordJob* setPassword( KIO::Slave* slave, const KURL& url, const TQString& oldPassword, const TQString& newPassword );
+ SetPasswordJob* setPassword( TDEIO::Slave* slave, const KURL& url, const TQString& oldPassword, const TQString& newPassword );
/**
* Adds a delegate represented by @p email with the given @p params for the user encoded in @p url.
*/
- SetDelegateJob* setDelegate( KIO::Slave* slave, const KURL& url, const TQString& email, int params );
+ SetDelegateJob* setDelegate( TDEIO::Slave* slave, const KURL& url, const TQString& email, int params );
/**
* Deletes the delegate represented by @p email for the user encoded in @p url.
*/
- DeleteDelegateJob* deleteDelegate( KIO::Slave* slave, const KURL& url, const TQString& email );
+ DeleteDelegateJob* deleteDelegate( TDEIO::Slave* slave, const KURL& url, const TQString& email );
/**
* Retrieves the delegates for the user encoded in @p url.
*/
- GetDelegatesJob* getDelegates( KIO::Slave* slave, const KURL& url );
+ GetDelegatesJob* getDelegates( TDEIO::Slave* slave, const KURL& url );
/**
* Adds the mailbox of another user represented by @p email to the users 'Other Users' namespace.
*/
- AddOtherUserJob* addOtherUser( KIO::Slave* slave, const KURL& url, const TQString& email );
+ AddOtherUserJob* addOtherUser( TDEIO::Slave* slave, const KURL& url, const TQString& email );
/**
* Deletes the mailbox of another user represented by @p email from the users 'Other Users' namespace.
*/
- DeleteOtherUserJob* deleteOtherUser( KIO::Slave* slave, const KURL& url, const TQString& email );
+ DeleteOtherUserJob* deleteOtherUser( TDEIO::Slave* slave, const KURL& url, const TQString& email );
/**
* Retrieves the list of all other users.
*/
- GetOtherUsersJob* getOtherUsers( KIO::Slave* slave, const KURL& url );
+ GetOtherUsersJob* getOtherUsers( TDEIO::Slave* slave, const KURL& url );
/**
* Sets the out-of-office data.
@@ -104,33 +104,33 @@ namespace Scalix {
* @param enabled Whether the out-of-office functionality is enabled.
* @param msg The out-of-office message.
*/
- SetOutOfOfficeJob* setOutOfOffice( KIO::Slave* slave, const KURL& url, bool enabled, const TQString& msg );
+ SetOutOfOfficeJob* setOutOfOffice( TDEIO::Slave* slave, const KURL& url, bool enabled, const TQString& msg );
/**
* Retrieves the out-of-office data.
*/
- GetOutOfOfficeJob* getOutOfOffice( KIO::Slave* slave, const KURL& url );
+ GetOutOfOfficeJob* getOutOfOffice( TDEIO::Slave* slave, const KURL& url );
- class SetPasswordJob : public KIO::SimpleJob
+ class SetPasswordJob : public TDEIO::SimpleJob
{
public:
SetPasswordJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class SetDelegateJob : public KIO::SimpleJob
+ class SetDelegateJob : public TDEIO::SimpleJob
{
public:
SetDelegateJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class DeleteDelegateJob : public KIO::SimpleJob
+ class DeleteDelegateJob : public TDEIO::SimpleJob
{
public:
DeleteDelegateJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class GetDelegatesJob : public KIO::SimpleJob
+ class GetDelegatesJob : public TDEIO::SimpleJob
{
Q_OBJECT
@@ -141,25 +141,25 @@ namespace Scalix {
Delegate::List delegates() const;
private slots:
- void slotInfoMessage( KIO::Job*, const TQString& );
+ void slotInfoMessage( TDEIO::Job*, const TQString& );
private:
Delegate::List mDelegates;
};
- class AddOtherUserJob : public KIO::SimpleJob
+ class AddOtherUserJob : public TDEIO::SimpleJob
{
public:
AddOtherUserJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class DeleteOtherUserJob : public KIO::SimpleJob
+ class DeleteOtherUserJob : public TDEIO::SimpleJob
{
public:
DeleteOtherUserJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class GetOtherUsersJob : public KIO::SimpleJob
+ class GetOtherUsersJob : public TDEIO::SimpleJob
{
Q_OBJECT
@@ -170,19 +170,19 @@ namespace Scalix {
TQStringList otherUsers() const;
private slots:
- void slotInfoMessage( KIO::Job*, const TQString& );
+ void slotInfoMessage( TDEIO::Job*, const TQString& );
private:
TQStringList mOtherUsers;
};
- class SetOutOfOfficeJob : public KIO::SimpleJob
+ class SetOutOfOfficeJob : public TDEIO::SimpleJob
{
public:
SetOutOfOfficeJob( const KURL& url, const TQByteArray &packedArgs, bool showProgressInfo );
};
- class GetOutOfOfficeJob : public KIO::SimpleJob
+ class GetOutOfOfficeJob : public TDEIO::SimpleJob
{
Q_OBJECT
@@ -194,7 +194,7 @@ namespace Scalix {
TQString message() const;
private slots:
- void slotInfoMessage( KIO::Job*, const TQString& );
+ void slotInfoMessage( TDEIO::Job*, const TQString& );
private:
bool mEnabled;