summaryrefslogtreecommitdiffstats
path: root/src/kmplayerprocess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kmplayerprocess.h')
-rw-r--r--src/kmplayerprocess.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/kmplayerprocess.h b/src/kmplayerprocess.h
index 2a34d87..d1de37d 100644
--- a/src/kmplayerprocess.h
+++ b/src/kmplayerprocess.h
@@ -37,7 +37,7 @@
class TQWidget;
class TDEProcess;
-namespace KIO {
+namespace TDEIO {
class Job;
class TransferJob;
}
@@ -96,7 +96,7 @@ public slots:
virtual bool brightness (int pos, bool absolute);
protected slots:
void rescheduledStateChanged ();
- void result (KIO::Job *);
+ void result (TDEIO::Job *);
protected:
void setState (State newstate);
virtual bool deMediafiedPlay ();
@@ -107,7 +107,7 @@ protected:
State m_state;
State m_old_state;
TDEProcess * m_process;
- KIO::Job * m_job;
+ TDEIO::Job * m_job;
TQString m_url;
int m_request_seek;
const char ** m_supported_sources;
@@ -206,8 +206,8 @@ public:
};
MPlayerPreferencesPage (MPlayer *);
KDE_NO_CDTOR_EXPORT ~MPlayerPreferencesPage () {}
- void write (KConfig *);
- void read (KConfig *);
+ void write (TDEConfig *);
+ void read (TDEConfig *);
void sync (bool fromUI);
void prefLocation (TQString & item, TQString & icon, TQString & tab);
TQFrame * prefPage (TQWidget * parent);
@@ -363,8 +363,8 @@ class KMPLAYER_NO_EXPORT XMLPreferencesPage : public PreferencesPage {
public:
XMLPreferencesPage (CallbackProcess *);
~XMLPreferencesPage ();
- void write (KConfig *);
- void read (KConfig *);
+ void write (TDEConfig *);
+ void read (TDEConfig *);
void sync (bool fromUI);
void prefLocation (TQString & item, TQString & icon, TQString & tab);
TQFrame * prefPage (TQWidget * parent);
@@ -438,7 +438,7 @@ public:
KURL url;
TQByteArray pending_buf;
- KIO::TransferJob *job;
+ TDEIO::TransferJob *job;
timeval data_arrival;
TQ_UINT32 bytes;
TQ_UINT32 stream_id;
@@ -449,11 +449,11 @@ signals:
void stateChanged ();
void redirected (TQ_UINT32, const KURL &);
private slots:
- void slotResult (KIO::Job*);
- void slotData (KIO::Job*, const TQByteArray& qb);
- void redirection (KIO::Job *, const KURL &url);
- void slotMimetype (KIO::Job *, const TQString &mime);
- void slotTotalSize (KIO::Job *, KIO::filesize_t sz);
+ void slotResult (TDEIO::Job*);
+ void slotData (TDEIO::Job*, const TQByteArray& qb);
+ void redirection (TDEIO::Job *, const KURL &url);
+ void slotMimetype (TDEIO::Job *, const TQString &mime);
+ void slotTotalSize (TDEIO::Job *, TDEIO::filesize_t sz);
};
class KMPLAYER_NO_EXPORT NpPlayer : public Process {