diff options
Diffstat (limited to 'sip/kio/scheduler.sip')
-rw-r--r-- | sip/kio/scheduler.sip | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/sip/kio/scheduler.sip b/sip/kio/scheduler.sip index 1ec06f0..4459906 100644 --- a/sip/kio/scheduler.sip +++ b/sip/kio/scheduler.sip @@ -23,7 +23,7 @@ // If not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -namespace KIO +namespace TDEIO { class Scheduler : TQObject, DCOPObject @@ -34,21 +34,21 @@ class Scheduler : TQObject, DCOPObject public: -//ig typedef TQPtrList<KIO::SimpleJob> JobList; - static void doJob (KIO::SimpleJob*); - static void scheduleJob (KIO::SimpleJob*); - static void cancelJob (KIO::SimpleJob*); - static void jobFinished (KIO::SimpleJob*, KIO::Slave*); - static void putSlaveOnHold (KIO::SimpleJob*, const KURL&); +//ig typedef TQPtrList<TDEIO::SimpleJob> JobList; + static void doJob (TDEIO::SimpleJob*); + static void scheduleJob (TDEIO::SimpleJob*); + static void cancelJob (TDEIO::SimpleJob*); + static void jobFinished (TDEIO::SimpleJob*, TDEIO::Slave*); + static void putSlaveOnHold (TDEIO::SimpleJob*, const KURL&); static void removeSlaveOnHold (); static void publishSlaveOnHold (); //doc // There is no default value for config (KIO.MetaData) - pass an // empty Python dict if you need the default value //end - static KIO::Slave* getConnectedSlave (const KURL&, const KIO::MetaData&); - static bool assignJobToSlave (KIO::Slave*, KIO::SimpleJob*); - static bool disconnectSlave (KIO::Slave*); + static TDEIO::Slave* getConnectedSlave (const KURL&, const TDEIO::MetaData&); + static bool assignJobToSlave (TDEIO::Slave*, TDEIO::SimpleJob*); + static bool disconnectSlave (TDEIO::Slave*); %If ( KDE_3_1_0 - ) static void registerWindow (TQWidget*); @@ -69,16 +69,16 @@ public: virtual QCStringList functions (); public slots: - void slotSlaveDied (KIO::Slave*); + void slotSlaveDied (TDEIO::Slave*); void slotSlaveStatus (pid_t, const TQCString&, const TQString&, bool); signals: - void slaveConnected (KIO::Slave*); - void slaveError (KIO::Slave*, int, const TQString&); + void slaveConnected (TDEIO::Slave*); + void slaveError (TDEIO::Slave*, int, const TQString&); protected: - void setupSlave (KIO::Slave*, const KURL&, const TQString&, const TQString&, bool, const KIO::MetaData* = 0); -//ig bool startJobScheduled (KIO::Scheduler::ProtocolInfo*); + void setupSlave (TDEIO::Slave*, const KURL&, const TQString&, const TQString&, bool, const TDEIO::MetaData* = 0); +//ig bool startJobScheduled (TDEIO::Scheduler::ProtocolInfo*); bool startJobDirect (); Scheduler (); @@ -95,12 +95,12 @@ protected slots: private: - Scheduler (const KIO::Scheduler&); + Scheduler (const TDEIO::Scheduler&); protected: //igx virtual void virtual_hook (int, void*); }; // class Scheduler -}; // namespace KIO +}; // namespace TDEIO |